Commit fdf62cef by pierce

fixed 我的頁面,發佈按鈕很難點擊的問題

parent 2346ad04
...@@ -110,7 +110,7 @@ typedef NS_ENUM(NSInteger, FUSMySettingItemType){ ...@@ -110,7 +110,7 @@ typedef NS_ENUM(NSInteger, FUSMySettingItemType){
self.headerView = [[FUSMyHeaderView alloc] initWithFrame:CGRectMake(0, 0, self.tableView.width, [FUSMyHeaderView fus_viewHeight])]; self.headerView = [[FUSMyHeaderView alloc] initWithFrame:CGRectMake(0, 0, self.tableView.width, [FUSMyHeaderView fus_viewHeight])];
[self.tableView.tableHeaderView insertSubview:self.headerView atIndex:1]; [self.tableView.tableHeaderView insertSubview:self.headerView atIndex:1];
self.naviView = [[UIView alloc] initWithFrame:CGRectMake(0, UIView.fus_StatusBarHeight, UIView.fus_screenW, UIView.fus_NavgationBarHeight)]; self.naviView = [[UIView alloc] initWithFrame:CGRectMake(0, UIView.fus_SafeTop, UIView.fus_screenW, UIView.fus_NavgationBarHeight)];
[self addSubview:self.naviView]; [self addSubview:self.naviView];
if ([[[NSUserDefaults standardUserDefaults] objectForKey:FUSUserUDKeys.fus_DYNAMIC_SEND_SHOW_SWITCH] boolValue]) { if ([[[NSUserDefaults standardUserDefaults] objectForKey:FUSUserUDKeys.fus_DYNAMIC_SEND_SHOW_SWITCH] boolValue]) {
...@@ -119,7 +119,7 @@ typedef NS_ENUM(NSInteger, FUSMySettingItemType){ ...@@ -119,7 +119,7 @@ typedef NS_ENUM(NSInteger, FUSMySettingItemType){
[self.naviView addSubview:self.publishBtn]; [self.naviView addSubview:self.publishBtn];
[self.publishBtn mas_makeConstraints:^(MASConstraintMaker *make) { [self.publishBtn mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.bottom.offset(0); make.top.bottom.offset(0);
make.right.offset(0); make.right.offset(-8);
make.width.equalTo(self.publishBtn.mas_height); make.width.equalTo(self.publishBtn.mas_height);
}]; }];
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment