2013-07-15 41 views
2

我需要在导航栏的右侧放置设置图标,并且想要在设置应用程序中使用Apple自己的设置图标(齿轮图标)。这是允许的,如果这些图标是可访问的,我怎样才能得到它们?到目前为止,我只能在xcode中访问Apple的图标子集,如动作,添加,书签...从UIBarButtonSystemItem撤消,但没有类似设置的符号。导航栏上的Apple标准设置栏图标

self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"wantapplestdhere.png"] style:UIBarButtonItemStylePlain target:self action:@selector(selectorMethod:)]; 

回答

4

我不能说是否允许使用图标。但是,它们是可访问的。只需下载0xced's iOS-Artwork-Extractor并在模拟器上运行它。它会给你一个包含在你运行的iOS模拟器中的所有图像的转储,我相信它就是所有这些。