我正在做一个应用程序,我需要在视图控制器类中调用 nsobject 类,我尝试了几种方法,但它不起作用,要么我收到 sigabrt 错误,要么应用程序崩溃。
请帮我。
我现在迷路了好几天。
有人有从视图控制器调用 nsobject 的示例代码吗?
提前感谢您的帮助。
#import <UIKit/UIKit.h>
@interface ViewController : UIViewController
-(IBAction)firstButton;
@end
#import <UIKit/UIKit.h>
@interface TutoAppDelegate : NSObject <UIApplicationDelegate> {
UIWindow *window;
UINavigationController *navigationController;
UIButton *firstButton;
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet UINavigationController *navigationController;
@property (nonatomic, retain) IBOutlet UIButton *firstButton;
@end