Commit e112a8cf18aac37d86f7ac7d70b6e9e88a0369dd
1 parent
7799e99e
no message
Showing
3 changed files
with
3 additions
and
5 deletions
CNLiveSettingModule/Classes/AboutUs/CNLiveAboutUsController.m
| ... | ... | @@ -134,8 +134,8 @@ static const NSInteger timeValue = 1.5; |
| 134 | 134 | - (void)createSubViews { |
| 135 | 135 | [self.view addSubview:self.navigationBar]; |
| 136 | 136 | [self.view addSubview:self.tableView]; |
| 137 | - | |
| 138 | 137 | } |
| 138 | + | |
| 139 | 139 | #pragma mark - UITableViewDelegate |
| 140 | 140 | - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{ |
| 141 | 141 | CNLiveSettingModel *model = self.data[indexPath.row]; | ... | ... |
CNLiveSettingModule/Classes/Controller/CNLiveSettingController.m
| ... | ... | @@ -332,10 +332,9 @@ static const NSInteger timeValue = 1.5; |
| 332 | 332 | id<CNLiveLoginServiceProtocol> login = [[BeeHive shareInstance] createService:@protocol(CNLiveLoginServiceProtocol)]; |
| 333 | 333 | UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:[login getLoginViewController]]; |
| 334 | 334 | [UIApplication sharedApplication].delegate.window.rootViewController = nav; |
| 335 | - | |
| 336 | - }]; | |
| 337 | - QMUIAlertAction *cancel = [QMUIAlertAction actionWithTitle:@"取消" style:QMUIAlertActionStyleCancel handler:^(__kindof QMUIAlertController *aAlertController, QMUIAlertAction *action) { | |
| 338 | 335 | }]; |
| 336 | + | |
| 337 | + QMUIAlertAction *cancel = [QMUIAlertAction actionWithTitle:@"取消" style:QMUIAlertActionStyleCancel handler:nil]; | |
| 339 | 338 | |
| 340 | 339 | QMUIAlertController *alertController = [QMUIAlertController alertControllerWithTitle:@"" message:@"" preferredStyle:QMUIAlertControllerStyleActionSheet]; |
| 341 | 340 | [alertController addAction:sure]; | ... | ... |
CNLiveSettingModule/Classes/UpdateTel/CNLiveUpdateTelView.m
| ... | ... | @@ -98,7 +98,6 @@ static const NSInteger timeValue = 1.5; |
| 98 | 98 | make.top.equalTo(self.lineView.mas_bottom).offset(0); |
| 99 | 99 | make.left.equalTo(self).offset(margin); |
| 100 | 100 | make.height.mas_equalTo(50); |
| 101 | -// make.width.mas_equalTo(60); | |
| 102 | 101 | }]; |
| 103 | 102 | [self.verification mas_makeConstraints:^(MASConstraintMaker *make) { |
| 104 | 103 | make.centerY.equalTo(self.numberLabel); | ... | ... |