I ve experienced something today while I m building my app. I ve declared a protocol in my MyObject1 and add delegate property on it. I ve assign MyObject2 as a Delegate of the MyObject1. I ve added it in this way as usual
@interface MyObject2: UIViewController <DelegateOfObject1>
But the Xcode says that my the protocol declaration cannot be found. I ve check my code but I ve declared this protocol. I ve try to assign MyObject2 as delegate of other Object. I ve edit my code like this
@interface MyObject2: UIViewController <UITableViewDelegate,DelegateOfObject1>
但Xcode再次指出,它无法找到代表OfObject1议定书的声明。 我曾试图删除我的代码上的代表OfObject1,并指定MyObject为其他物体的代表,我也这样做。
@interface MyObject2: UIViewController <UITableViewDelegate,UITabBarDelegate>
没有发现错误。 随后,我再次试图在法典中增加我的代表OfObject1。
@interface MyObject2: UIViewController <UITableViewDelegate,UITab BarDelegate,DelegateOfObject1>
当时,X密码没有发现我的代码有任何错误。 因此,我再次试图根据我的法典删除UITableViewDelegate和UITab BarDelegate。
@interface MyObject2: UIViewController <DelegateOfObject1>
当时没有发现任何错误,但这是前面写的同一法典。 我的法典可能会有什么样的原因?
......