我需要将设置图标放在导航栏的右侧,并希望在设置应用程序中使用 Apple 自己的设置图标(齿轮图标)。这是否允许?如果这些图标可以访问,我该如何获取它们?到目前为止,我只能在 xcode 中找到 Apple 图标的一个子集,例如操作、添加、书签...从 UIBarButtonSystemItem 撤消,但没有类似设置的符号。
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"wantapplestdhere.png"] style:UIBarButtonItemStylePlain target:self action:@selector(selectorMethod:)];