Q:导航栏上自定义titleView时,titleView上的button和点击手势失效
A:两步解决
1、在自定义的titleView的.m中重写intrinsicContentSize
- (CGSize)intrinsicContentSize{
return CGSizeMake(200, 30);//自行更改
}
2、在viewController中设置titleView前设置translatesAutoresizingMaskIntoConstraints
self.titleView.translatesAutoresizingMaskIntoConstraints = false;
self.navigationItem.titleView = self.titleView;
原因我也不知,如果有大佬晓得望赐教
网友评论