核心參數: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
完事~!
网友评论