我已将 a 添加UIBarButtonItem
到 a中,并根据此帖子UIToolbar
使其模拟 a 。UILabel
这是一些示例代码:
UIToolbar * toolBar = [[UIToolbar alloc] initWithFrame:toolbarInitialFrame];
UIBarButtonItem * labelEmu = [[UIBarButtonItem alloc] initWithTitle:@"Settings" style:UIBarButtonItemStylePlain target:self action:nil];
[labelEmu setEnabled:NO];
/* some more buttons */
[toolBar setItems:[NSArray arrayWithObjects:labelEmu, spacer, doneButton, nil]];
[container addSubview:toolBar];
我的问题是setEnabled:NO
按钮处于非活动状态但变暗,而setEnabled:YES
按钮未变暗,但按下时会发光。
我怎样才能让这个按钮不变暗和不活动(所以按下时它不会发光)?