我一直在尝试使用以下方式制作 ios 应用程序:
具有一些功能/方法的视图控制器
一个带有指向这些函数/方法的指针的新类,以便 class1.point2f () 可以工作
// testclass header @property void (*point2f)(); // viewcontroller header #import "testclass.h" @interface ViewController : UIViewController { testclass *test; } @property testclass *test; @end // viewcontroller implementation void downx() { NSLog(@"hello"); }; - (void)viewDidLoad { [super viewDidLoad]; test.point2f = downx; test.point2f (); // crashes only at this line
我会非常感谢答案或至少我可以进一步研究的关键字。