我想以编程方式为 navigationItem.titleView 设置按钮。
我尝试使用以下代码但没有成功;
UIBarButtonItem *navigationTitleButton = [[UIBarButtonItem alloc] initWithTitle:@"Custom" style:UIBarButtonItemStyleBordered target:self action:@selector(backToHOmePage)];
navigationTitleButton.image = [UIImage imageNamed:@"title.png"];
self.navigationItem.titleView = navigationTitleButton;
警告说:从 'UIBarButtonItem *__strong' 分配给 'UIView *' 的指针类型不兼容