Why my FirstResponder in InterfaceBuilder's file is missing redo:
connection (in Received Actions
list)? undo:
exists, but redo:
doesn't. How could I fix it?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
This is a bug. The workaround is to throw this in a file somewhere:
@interface NSResponder (Redo)
- (IBAction)redo:(id)sender;
@end
Then make your connection in Interface Builder. Once that is done you can delete this code.
回答2:
This is a bug in Xcode, it doesn't see the redo: action even though it is there. As a workaround you can create a custom action redo: for making the connection.
See my Radar here: http://www.cocoanetics.com/2013/01/radar-interface-builders-first-responder-is-missing-some-editing-actions/