如何在 splittview 的左侧添加工具栏?我有一个导航控制器,我已经尝试过了:
UIToolbar *toolbar = [[UIToolbar alloc] init]; 工具栏.barStyle = UIBarStyleDefault;
[工具栏 sizeToFit];
UIBarButtonItem *infoButton = [[UIBarButtonItem alloc] initWithTitle:@"back" style:UIBarButtonItemStyleBordered target:self action:@selector(info_clicked:)];
[工具栏 setItems:[NSArray arrayWithObjects:infoButton,nil]];
[self.navigationController.view addSubview:toolbar];
但它没有工作。它出现在顶部而不是底部
MEMA