iOS11后导航栏的自定义titleView点击手势或者按钮失效

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;

原因我也不知,如果有大佬晓得望赐教

你可能感兴趣的:(iOS11后导航栏的自定义titleView点击手势或者按钮失效)