問(wèn)題: self.navigationItem.titleView 添加點(diǎn)擊手勢(shì)無(wú)效
解決辦法:
// 創(chuàng)建一個(gè)UIView 添加一個(gè)屬性
@property(nonatomic, assign) CGSize intrinsicContentSize;
//然后設(shè)置屬性
self.titleView.intrinsicContentSize = CGSizeMake(kScreenWidth,44);
問(wèn)題: self.navigationItem.titleView 添加點(diǎn)擊手勢(shì)無(wú)效
// 創(chuàng)建一個(gè)UIView 添加一個(gè)屬性
@property(nonatomic, assign) CGSize intrinsicContentSize;
//然后設(shè)置屬性
self.titleView.intrinsicContentSize = CGSizeMake(kScreenWidth,44);