问题: self.navigationItem.titleView 添加点击手势无效
解决办法:
// 创建一个UIView 添加一个属性
@property(nonatomic, assign) CGSize intrinsicContentSize;
//然后设置属性
self.titleView.intrinsicContentSize = CGSizeMake(kScreenWidth,44);
问题: self.navigationItem.titleView 添加点击手势无效
// 创建一个UIView 添加一个属性
@property(nonatomic, assign) CGSize intrinsicContentSize;
//然后设置属性
self.titleView.intrinsicContentSize = CGSizeMake(kScreenWidth,44);