-(BOol)canBecomeFirstResponder { return YES;}- (voID)motionBegan:(UIEventSubtype)motion withEvent:(UIEvent *)event { if (event.type == UIEventSubtypeMotionShake) { NSLog(@"Shaken,not stirred."); }}
但因为在.h文件中,委托被定义为
@interface xxxAppDelegate : NSObject <UIApplicationDelegate,UITabbarControllerDelegate>
我不能用
[self becomeFirstResponder];
在.m中,使应用程序委派第一个响应者.因此,它当然不起作用.
让它运作的最佳方法是什么?
编辑
您可以在文档中阅读有关响应者链here的信息.
总结以上是内存溢出为你收集整理的objective-c – 将App delegate设置为第一响应者全部内容,希望文章能够帮你解决objective-c – 将App delegate设置为第一响应者所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)