我正在尝试添加具有 UIBarButtonSystemItemCompose 样式的 UIBarButtonItem。根据苹果文档,它应该显示一个由方形轮廓组成的撰写图标。当我使用以下代码时,它只显示一个红色按钮。仅当 uibarbuttonitem 放置在 UIToolBar 而不是导航栏内时,该图标才有效。
self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc]
initWithTitle:nil
style:UIBarButtonSystemItemCompose
target:self
action:@selector(tweetPressed:)] autorelease];