我以编程方式在工具栏上包含一个操作按钮和一个撰写按钮,代码如下:
UIBarButtonItem *compose = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:7 target:self action:@selector(userWritesHaiku)];
compose.style=UIBarButtonItemStyleBordered;
UIBarButtonItem *action = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:9 target:self action:@selector(userWritesHaiku)];
action.style=UIBarButtonItemStyleBordered;
(然后将它们放在一个数组中并将它们分配给工具栏。)
但这给了我以下输出:
我想要的是以下内容,我可以使用 Interface Builder 创建,但我没有使用 Interface Builder。
如何以编程方式获取后一个图像?