[go: up one dir, main page]

Skip to content

Commit

Permalink
示例代码优化
Browse files Browse the repository at this point in the history
  • Loading branch information
pujiaxin33 committed Oct 26, 2020
1 parent dddd62a commit 61a225b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ - (void)viewDidLoad {

_userHeaderView = [[PagingViewTableHeaderView alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, JXTableHeaderViewHeight)];

_categoryView = [[JXCategoryTitleView alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, JXheightForHeaderInSection)];
_categoryView = [[JXCategoryTitleView alloc] init];
self.categoryView.bounds = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, JXheightForHeaderInSection);
self.categoryView.titles = self.titles;
self.categoryView.backgroundColor = [UIColor whiteColor];
self.categoryView.delegate = self;
Expand Down

0 comments on commit 61a225b

Please sign in to comment.