我想创建一个显示诸如“相机胶卷”的“发送”选项之类的按钮,但是我不知道添加按钮是哪种视图,有人可以帮我吗?

最佳答案

我认为您正在寻找使用UIBarButtonSystemItemAction创建的 UIBarButtonItem

UIBarButtonItem * baritem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAction systemItem target: some_view action:@selector(some_method:)];

Reference-滚动到底部附近以查看带有示例的可能预定义按钮的常量。

关于iphone - 显示诸如“相机胶卷”之类的选项的 View 的名称是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9482308/

10-12 01:34