我在相机控制器上创建了工具栏的叠加视图,我根据工具栏上的要求添加了5个按钮, 错误是当我运行应用程序工具栏项目,即按钮是初始褪色并且不可见为:时,灰色空间是定义的工具栏,当我点击工具栏时,按钮操作已执行但按钮不是可见。提前谢谢。
UIToolbar *toolBar=[[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, width, 55)];
NSArray *items=[NSArray arrayWithObjects:
[[UIBarButtonItem alloc] initWithTitle:(@"Album") style: UIBarStyleDefault target:self action:@selector(selectAlbum)],
[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil],
[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil],
[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:self action:nil],
[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil],
nil];
[toolBar setItems: items animated:NO];
以上是参考代码。