我已经对上面的标题进行了很多谷歌搜索,但无法获得我想要的解决方案。我有一个使用静态库进行服务调用的 ARC 项目。当单击登录按钮凭据被传递到库并获得对登录视图控制器的响应时,这就是问题发生的地方。我无法将数据传递给发送请求的视图控制器。这是发生错误的代码:
- (void)loginResult:(LoginData *)logData {
[viewCtrl loginResult:logData]; ->No Visible @Interface for 'UIViewController' declares the selector 'loginResult:'
}
在 .h 中(静态库类)
#import <UIKit/UIKIt.h>
@interface MobileWebMethods : NSObject {
UIViewController *viewCtrl;
}
@property (nonatomic, retain) UIViewController *viewCtrl;
- (void)loginResult:(LoginData *)logData;