我需要一个工具栏按钮,按钮图标下方有小文字。
我正在尝试使用viewDidLoad:
UIButton* customButton = [UIButton buttonWithType:UIButtonTypeCustom];
[customButton setImage:[UIImage imageNamed:@"menu-search-active.png"] forState:UIControlStateNormal];
[customButton setTitle:@"Button" forState:UIControlStateNormal];
[customButton sizeToFit];
UIBarButtonItem* sb = [[UIBarButtonItem alloc] initWithCustomView:customButton];
[self setToolbarItems:[NSArray arrayWithObject:sb]];
但我的按钮只有图标,没有标题可见。