मैं अपने टूलबार में एक लेबल जोड़ने की कोशिश कर रहा हूं। बटन महान काम करता है, हालांकि जब मैं लेबल ऑब्जेक्ट जोड़ता हूं, तो यह क्रैश हो जाता है। कोई विचार?
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];