本文解答了关于《中级会计职称备考时间少怎么办》相关内容,同时关于1、中级会计职称备考时间少怎么办啊,2、中级会计职称备考时长,3、中级会计考试时间不够用,4、中级会计快考试了,但是还没看完怎么办,5、会计中级备考时长,的相关问答本篇文章福途教育网小编也整理了进来,希望对您有帮助。
选择辅导课程";
loginedView.backgroundColor = [UIColor colorWithWhite:.9 alpha:1];
loginedView.overlayAlpha = 0;
loginedView.popupCloseButtonStyle = PopupCloseButtonStyleNone;
loginedView.popupAnimationType =PopupAnimationTypeFade;
loginedView.tapOutsideToDismiss = YES;
[loginedView show];
}
break;
case 2:
[self.navigationController pushViewController:[NSClassFromString(@"ProgressViewController") new] animated:YES];
break;
case 3:
{
BQBaseView * loginedView = [BQBaseView showViewInSuperview:[UIApplication sharedApplication].keyWindow superview:[UIApplication sharedApplication].keyWindow];
loginedView.title = @"介绍朋友购买辅导课程可以获赠一次体验机会";
loginedView.backgroundColor = [UIColor colorWithWhite:.9 alpha:1];
loginedView.overlayAlpha = 0;
loginedView.tapOutsideToDismiss = YES;
[loginedView show];
}
break;
default:
break;
}
#endif
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return 4;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];
if (!cell) {
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cell"];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
cell.textLabel.font = [UIFont fontWithName:FontName size:15];
}
cell.detailTextLabel.textColor = BaseColor;
switch (indexPath.row) {
case 0:
cell.textLabel.text = @"注册会员";
break;
case 1:
cell.textLabel.text = @"购买辅导课程";
if (_progressModel) {
cell.detailTextLabel.text = [NSString stringWithFormat:@"已购买 %@",_progressModel.class_name];
}
break;
case 2:
cell.textLabel.text = @"查看学习进度";
break;
case 3:
cell.textLabel.text = @"邀请朋友购买";
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
break;
default:
break;
}
return cell;
}
- (void)getData{
NSString * url = [NSString stringWithFormat:@"%@Mobile/User/member_info",BASEURL];
AppDelegate * appDelegate = (AppDelegate*)[UIApplication sharedApplication].delegate;
NSDictionary * paraDic = @{Apptoken:appDelegate.token};
[YRHttpRequest post:url params:paraDic success:^(NSDictionary *jsonDic) {
[MBProgressHUD hideHUDForView:self.view];
NSInteger success = [jsonDic[@"success"] integerValue];
if (success == 1) {
self.dataDic = jsonDic[@"data"];
self.progressModel = [MyProgressClassModel mj_objectWithKeyValues:[self.dataDic[@"classInfo"] safeObjectForKey:@"class_info"]];
[self.tableView reloadData];
}else {
// NSString * descStr = [NSString stringWithFormat:@"%@",jsonDic[@"des"]];
// [YRGeneralHud showAlertWithTips:descStr];
self.dataDic = @{@"username":@"",@"created":@"",@"jifen":@"",@"accumulate_jf":@""};
}
} failure:^(NSDictionary *jsonDic) {
[MBProgressHUD hideHUDForView:self.view];
self.dataDic = @{@"username":@"",@"created":@"",@"jifen":@"",@"accumulate_jf":@""};
}];
}
@end
总结:以上是编辑:【雪中火】整理及AI智能原创关于《中级会计职称备考时间少怎么办
》优质内容解答希望能帮助到您。