我在 xib 文件中有一个 UIBarButtonItem 项目。我可以在 xib 文件中将其标识符设置为播放、暂停、页面 curl 等。现在我怎样才能以编程方式做到这一点?

最佳答案

这应该工作(在viewDidLoad中)

UIBarButtonItem *barButtonItem = [[[UIBarButtonItem alloc] initWithBarButtonSystemItem:systemItem target:tar action:act] autorelease];
self.navigationItem.rightBarButton = barButtonItem;

其中 systemItem 是您要使用的 UIBarButtonSystemItem 类型。选项的完整列表 here

关于iphone - 以编程方式设置 UIBarButtonItem 的标识符,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8989167/

10-17 00:00