如何在UI工具栏中添加一个自定义图片字符(如书签一个),后跟一些文字?
答案 0 :(得分:2)
创建UIView
并在视图上删除UIImage
和UITextView
(或UILabel
)。然后将视图添加到工具栏按钮。
答案 1 :(得分:0)
为工具栏按钮创建图像和文本(我认为这是您的问题) 我创建了一个tabBarItem属性,并在“setup”方法中为其分配init。在awakeFromNib中,我调用了“setup”方法。请务必在支持文件文件夹中使用您的图像 我就是这样做的:
@interface YourViewController : UIViewController {
}
@property (retain) UITabBarItem *tabBarItem;
-(void)setup;
@end
@implementation YourViewController
@synthesize tabBarItem;
-(void) setup{
UITabBarItem *item = [[UITabBarItem alloc] initWithTitle:@"theTitleYouWant" image:[UIImage imageNamed:@"yourImage.png"] tag:0];
self.tabBarItem = item;
[item release];
}
@end