ฉันกำลังพยายามเพิ่มป้ายกำกับในแถบเครื่องมือของฉัน ปุ่มใช้งานได้ดี แต่เมื่อฉันเพิ่มออบเจ็กต์ป้ายกำกับมันขัดข้อง ความคิดใด ๆ ?
UIBarButtonItem *setDateRangeButton = [[UIBarButtonItem alloc] initWithTitle:@"Set date range"
style:UIBarButtonItemStyleBordered
target:self
action:@selector(setDateRangeClicked:)];
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(5, 5, 20, 20)];
label.text = @"test";
[toolbar setItems:[NSArray arrayWithObjects:setDateRangeButton,label, nil]];
// Add the toolbar as a subview to the navigation controller.
[self.navigationController.view addSubview:toolbar];
// Reload the table view
[self.tableView reloadData];