iOS navigation titleview(无法点击/触摸
2019-09-27 本文已影响0人
iOS阿能
核心參數:intrinsicContentSize(自行百度)
1.封裝一個titleview,
-
.h文件新增@property(nonatomic, assign) CGSize intrinsicContentSize;屬性
image.png
- (FTStoreWantSeeTitleView *)titleView{
if (!_titleView) {
_titleView = [FTStoreWantSeeTitleView loadFromNib];
_titleView.frame = CGRectMake(0, 0, 100, 44);
/// 設置觸摸範圍
_titleView.intrinsicContentSize = CGSizeMake(120, 44);
_titleView.isGoods = NO;
}
return _titleView;
}
image.png
完事~!