iPhone - 带有文本和符号字符的 UIToolbarButton

发布于 2024-11-14 10:51:16 字数 53 浏览 3 评论 0原文

我如何在 UIToolbarButton 中输入自定义图片字符(如书签字符),后跟一些文本?

How may I puy into a UIToolbarButton a custom picture characters (like the bookmark one) followed by some text ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

抱着落日 2024-11-21 10:51:16

创建一个 UIView 并在视图上放置一个 UIImageUITextView (或 UILabel)。然后将视图添加到工具栏按钮。

Create a UIView and drop a UIImage and UITextView (or UILabel) on the view. Then add the view to the toolbarbutton.

白馒头 2024-11-21 10:51:16

为您的工具栏按钮提供图像和文本(我认为这是您的问题)
我创建一个 tabBarItem 属性并在“setup”方法中分配初始化它。在 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

To have an image and text for your toolbar button ( I think that's your question)
I create a tabBarItem property and alloc init it in a "setup" method. In awakeFromNib I call the "setup" method. Be sure to have your image that you use in your supporting files folder
This is how I do it:

@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
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文