【发布时间】:2013-07-15 22:31:51
【问题描述】:
我需要将设置图标放在导航栏的右侧,并希望在设置应用程序中使用 Apple 自己的设置图标(齿轮图标)。这是否允许?如果这些图标可以访问,我该如何获取它们?到目前为止,我只能在 xcode 中找到 Apple 图标的子集,例如 Action、Add、Bookmarks ... Undo 从 UIBarButtonSystemItem,但没有类似设置的符号。
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"wantapplestdhere.png"] style:UIBarButtonItemStylePlain target:self action:@selector(selectorMethod:)];
【问题讨论】:
标签: ios icons uibarbuttonitem uinavigationitem