MyInfoVC.m 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. //
  2. // MyInfoVC.m
  3. // smartRhino
  4. //
  5. // Created by armin on 2019/11/1.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "MyInfoVC.h"
  9. #import "MyInfoCell.h"
  10. #import "ShowPhotoCameraAlertView.h"
  11. #import "LYLPhotoTailoringTool.h"
  12. #import "EditUserNickVC.h"
  13. #import "ShowGenderAlertView.h"
  14. #import "EditMySignOrBriefVC.h"
  15. #import "MyQRCodeVC.h"
  16. #import "EditPhoneOrEmailVC.h"
  17. #import "H5ViewController.h"
  18. #import "H6ViewController.h"
  19. #import "MyUserIconVC.h"
  20. @interface MyInfoVC ()<UITableViewDelegate,UITableViewDataSource>
  21. @property (strong,nonatomic) IBOutlet UITableView *tableView;
  22. @property (strong,nonatomic) UIImageView *showUserTestUserImg;
  23. @property (strong,nonatomic) UILabel *showUserGenderLabel;
  24. @end
  25. @implementation MyInfoVC
  26. +(MyInfoVC *)initMyInfoVC{
  27. MyInfoVC *controller = [StoryboardManager.shared.myCenter instantiateViewControllerWithIdentifier:@"MyInfoVC"];
  28. return controller;
  29. }
  30. - (void)viewDidLoad {
  31. [super viewDidLoad];
  32. self.fd_prefersNavigationBarHidden = YES;
  33. self.view.backgroundColor = RGB(238, 238, 238);
  34. if (@available(iOS 11.0, *)) {
  35. self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
  36. } else {
  37. self.automaticallyAdjustsScrollViewInsets = NO;
  38. }
  39. self.tableView.delegate = self;
  40. self.tableView.dataSource = self;
  41. self.tableView.backgroundColor = [UIColor clearColor];
  42. self.tableView.estimatedRowHeight = 0;
  43. self.tableView.estimatedSectionHeaderHeight = 0;
  44. self.tableView.estimatedSectionFooterHeight = 0;
  45. }
  46. - (void)viewWillAppear:(BOOL)animated{
  47. [super viewWillAppear:animated];
  48. [self.tableView reloadData];
  49. }
  50. - (void)viewDidAppear:(BOOL)animated{
  51. [super viewDidAppear:animated];
  52. [self.tableView reloadData];
  53. }
  54. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
  55. return 3;
  56. }
  57. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
  58. switch (section) {
  59. case 0:{
  60. return 3;
  61. }break;
  62. case 1:{
  63. return 3;
  64. }break;
  65. case 2:{
  66. return 3;
  67. }break;
  68. default:break;
  69. }
  70. return 0;
  71. }
  72. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
  73. switch (indexPath.section) {
  74. case 0:{
  75. return [MyInfoCell configCell0Height];
  76. }break;
  77. case 1:{
  78. return [MyInfoCell configCell1Height];
  79. }break;
  80. case 2:{
  81. return [MyInfoCell configCell1Height];
  82. }break;
  83. default:break;
  84. }
  85. return 0;
  86. }
  87. - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
  88. UIView *headerView = [[UIView alloc]init];
  89. [headerView setBackgroundColor:RGBA(238, 238, 238, 1)];
  90. return headerView;
  91. }
  92. - (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{
  93. UIView *headerView = [[UIView alloc]init];
  94. [headerView setBackgroundColor:RGBA(238, 238, 238, 1)];
  95. return headerView;
  96. }
  97. - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
  98. return 0;
  99. }
  100. - (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
  101. if(section == 0 || section == 1){
  102. return 10;
  103. }
  104. return 0;
  105. }
  106. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
  107. WS(weakSelf);
  108. switch (indexPath.section) {
  109. case 0:{
  110. switch (indexPath.row) {
  111. case 0:{
  112. MyInfoCell *cell = [MyInfoCell configCell0:tableView indexPath:indexPath];
  113. cell.cell0TitleLabel.text = @"头像";
  114. cell.cell0UserImgView.hidden = NO;
  115. [cell.cell0UserImgView sd_setImageWithURL:[NSURL URLWithString:[AppUserModel sharedAppUserModel].AvatarUrl]];
  116. UITapGestureRecognizer * tap = [[UITapGestureRecognizer alloc] initWithActionBlock:^(id _Nonnull sender) {
  117. MyUserIconVC * vc = [MyUserIconVC initMyUserIconVC];
  118. [weakSelf.navigationController pushViewController:vc animated:YES];
  119. }];
  120. [cell.cell0UserImgView addGestureRecognizer:tap];
  121. cell.cell0UserImgView.userInteractionEnabled = YES;
  122. self.showUserTestUserImg = cell.cell0UserImgView;
  123. return cell;
  124. }break;
  125. case 1:{
  126. MyInfoCell *cell = [MyInfoCell configCell1:tableView indexPath:indexPath];
  127. cell.cell1TitleLabel.text = @"姓名";
  128. cell.cell1ValueLabel.text = ISEmptyString([AppUserModel sharedAppUserModel].Name) ? @"": [self showStringLength:[AppUserModel sharedAppUserModel].Name];
  129. cell.cell1ValueLabel.textColor = UIColorHex(#3D95ED);
  130. return cell;
  131. }break;
  132. case 2:{
  133. MyInfoCell *cell = [MyInfoCell configCell0:tableView indexPath:indexPath];
  134. cell.cell0TitleLabel.text = @"性别";
  135. cell.cell0ValueLabel.text = [[AppUserModel sharedAppUserModel].Gender isEqualToString:@"Male"] ? @"男":@"女";
  136. cell.cell0LineView.hidden = YES;
  137. self.showUserGenderLabel = cell.cell0ValueLabel;
  138. return cell;
  139. }break;
  140. default:
  141. break;
  142. }
  143. }break;
  144. case 1:{
  145. switch (indexPath.row) {
  146. case 0:{
  147. MyInfoCell *cell = [MyInfoCell configCell1:tableView indexPath:indexPath];
  148. cell.cell1TitleLabel.text = @"单位";
  149. cell.cell1ValueLabel.text = ISEmptyString([AppUserModel sharedAppUserModel].DepartmentName) ? @"暂无单位": [self showStringLength:[AppUserModel sharedAppUserModel].DepartmentName];
  150. return cell;
  151. }break;
  152. case 1:{
  153. MyInfoCell *cell = [MyInfoCell configCell0:tableView indexPath:indexPath];
  154. cell.cell0TitleLabel.text = @"自我介绍";
  155. cell.cell0ValueLabel.text = @"";//ISEmptyString([AppUserModel sharedAppUserModel].description) ? @"":[self showStringLength:[AppUserModel sharedAppUserModel].Description]
  156. return cell;
  157. }break;
  158. case 2:{
  159. MyInfoCell *cell = [MyInfoCell configCell0:tableView indexPath:indexPath];
  160. cell.cell0TitleLabel.text = @"我的签名";
  161. cell.cell0ValueLabel.text = @"";//ISEmptyString([AppUserModel sharedAppUserModel].Signature) ? @"广西出版集团撰稿人":[self showStringLength:[AppUserModel sharedAppUserModel].Signature]
  162. cell.cell0LineView.hidden = YES;
  163. return cell;
  164. }break;
  165. default:
  166. break;
  167. }
  168. }break;
  169. case 2:{
  170. switch (indexPath.row) {
  171. case 0:{
  172. MyInfoCell *cell = [MyInfoCell configCell0:tableView indexPath:indexPath];
  173. cell.cell0TitleLabel.text = @"二维码";
  174. cell.cell0ErWeiMaImgView.hidden = NO;
  175. cell.cell0ErWeiMaImgView.image = [UIImage imageNamed:@"my_qrcode_code_icon"];
  176. return cell;
  177. }break;
  178. case 1:{
  179. MyInfoCell *cell = [MyInfoCell configCell0:tableView indexPath:indexPath];
  180. cell.cell0TitleLabel.text = @"手机号";
  181. cell.cell0ValueLabel.text = @"";//ISEmptyString([AppUserModel sharedAppUserModel].Phone) ? @"":[AppUserModel sharedAppUserModel].Phone
  182. return cell;
  183. }break;
  184. case 2:{
  185. MyInfoCell *cell = [MyInfoCell configCell0:tableView indexPath:indexPath];
  186. cell.cell0TitleLabel.text = @"邮箱";
  187. cell.cell0ValueLabel.text = @"";//ISEmptyString([AppUserModel sharedAppUserModel].Email) ? @"":[AppUserModel sharedAppUserModel].Email;
  188. cell.cell0LineView.hidden = YES;
  189. return cell;
  190. }break;
  191. default:
  192. break;
  193. }
  194. }break;
  195. default:break;
  196. }
  197. return nil;
  198. }
  199. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
  200. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  201. WS(weakSelf);
  202. switch (indexPath.section) {
  203. case 0:{
  204. switch (indexPath.row) {
  205. case 0:{
  206. [[ShowPhotoCameraAlertView initShowPhotoCameraAlertViewConfirm:^(ShowPhotoCameraType type) {
  207. if(type == ShowPhotoCameraType1){
  208. NSLog(@"相册");
  209. [[LYLPhotoTailoringTool sharedTool] selectPhotoWithPhoroOrCamera:SelectPhotoWithTypePhoroOrCamera2 crop:YES showImgBlock:^(NSString *imageUrlStr) {
  210. NSLog(@"111111");
  211. } choosImgBlock:^(UIImage *image) {
  212. NSLog(@"aaaaaa");
  213. self.showUserTestUserImg.image = image;
  214. SHOWLOADING
  215. [[HttpManager sharedHttpManager] HeaderUploadUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,Modify_UserImage_Post] parameters:@{@"":@""} pictureData:UIImageJPEGRepresentation(image,1.0f) pictureKey:@"file" success:^(id _Nonnull responseObject) {
  216. NSDictionary *dic = responseObject;
  217. NSLog(@"/n图片上传成功=====绝对路径=====/n%@",responseObject[@"AbsolutePath"]);
  218. NSLog(@"/n图片上传成功=====相对路径=====/n%@",responseObject[@"RelativePath"]);
  219. [UserManager updateUserInfoDetail:IMAGE Param:dic[@"RelativePath"] Success:^(id _Nonnull responseObject) {
  220. REMOVESHOW;
  221. [[HttpManager sharedHttpManager] GETUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,UserDetailGet] parameters:@{} success:^(id _Nonnull responseObject) {
  222. NSDictionary *dic = responseObject;
  223. [[AppUserModel sharedAppUserModel] modelSetWithDictionary:dic];
  224. dispatch_async(dispatch_get_main_queue(), ^{
  225. [weakSelf.tableView reloadRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] withRowAnimation:UITableViewRowAnimationAutomatic];
  226. });
  227. } failure:^(NSError * _Nonnull error) {
  228. }];
  229. } failure:^(NSError * _Nonnull error) {
  230. REMOVESHOW
  231. SHOWERROR([ZYCTool handerResultData:error])
  232. }];
  233. } failure:^(NSError * _Nonnull error) {
  234. REMOVESHOW
  235. SHOWERROR([ZYCTool handerResultData:error])
  236. }];
  237. }];
  238. }else if (type == ShowPhotoCameraType2){
  239. NSLog(@"相机");
  240. TZImagePickerController *imagePickerVc = [[TZImagePickerController alloc] initWithMaxImagesCount:1 delegate:nil];
  241. [imagePickerVc setNavLeftBarButtonSettingBlock:^(UIButton *leftButton){
  242. leftButton.hidden = YES;
  243. }];
  244. imagePickerVc.showSelectBtn = NO;
  245. imagePickerVc.allowCrop = YES;
  246. imagePickerVc.cropRect = CGRectMake(0, (SCREEN_HEIGHT - SCREEN_WIDTH) * 0.5, SCREEN_WIDTH, SCREEN_WIDTH);
  247. imagePickerVc.allowTakePicture = NO;
  248. imagePickerVc.allowTakeVideo = NO;
  249. imagePickerVc.allowPickingOriginalPhoto = NO;
  250. imagePickerVc.allowPickingGif = NO;
  251. [imagePickerVc setIsStatusBarDefault:YES];
  252. [imagePickerVc setNaviTitleColor:[UIColor blackColor]];
  253. [imagePickerVc setBarItemTextColor:[UIColor blackColor]];
  254. [imagePickerVc setDidFinishPickingPhotosHandle:^(NSArray<UIImage *> *photos, NSArray *assets, BOOL isSelectOriginalPhoto) {
  255. PHAsset *asset = assets.firstObject;
  256. switch (asset.mediaType) {
  257. case PHAssetMediaTypeVideo: {
  258. } break;
  259. case PHAssetMediaTypeImage: {
  260. UIImage * image = photos.firstObject;
  261. [[HttpManager sharedHttpManager] HeaderUploadUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,Modify_UserImage_Post] parameters:@{} pictureData:UIImageJPEGRepresentation(image,1.0f) pictureKey:@"file" success:^(id _Nonnull responseObject) {
  262. NSDictionary *dic = responseObject;
  263. NSLog(@"/n图片上传成功=====绝对路径=====/n%@",responseObject[@"AbsolutePath"]);
  264. NSLog(@"/n图片上传成功=====相对路径=====/n%@",responseObject[@"RelativePath"]);
  265. [UserManager updateUserInfoDetail:IMAGE Param:dic[@"RelativePath"] Success:^(id _Nonnull responseObject) {
  266. REMOVESHOW;
  267. [[HttpManager sharedHttpManager] GETUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,UserDetailGet] parameters:@{} success:^(id _Nonnull responseObject) {
  268. NSDictionary *dic = responseObject;
  269. [[AppUserModel sharedAppUserModel] modelSetWithDictionary:dic];
  270. dispatch_async(dispatch_get_main_queue(), ^{
  271. [weakSelf.tableView reloadRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] withRowAnimation:UITableViewRowAnimationAutomatic];
  272. });
  273. } failure:^(NSError * _Nonnull error) {
  274. }];
  275. } failure:^(NSError * _Nonnull error) {
  276. REMOVESHOW
  277. SHOWERROR([ZYCTool handerResultData:error])
  278. }];
  279. } failure:^(NSError * _Nonnull error) {
  280. REMOVESHOW
  281. SHOWERROR([ZYCTool handerResultData:error])
  282. }];
  283. } break;
  284. case PHAssetMediaTypeAudio:
  285. break;
  286. case PHAssetMediaTypeUnknown:
  287. break;
  288. default: break;
  289. }
  290. }];
  291. [self presentViewController:imagePickerVc animated:YES completion:nil];
  292. // [[LYLPhotoTailoringTool sharedTool] selectPhotoWithPhoroOrCamera:SelectPhotoWithTypePhoroOrCamera2 crop:YES showImgBlock:^(NSString *imageUrlStr) {
  293. // NSLog(@"222222");
  294. //
  295. // } choosImgBlock:^(UIImage *image) {
  296. // NSLog(@"oooooo");
  297. // self.showUserTestUserImg.image = image;
  298. //
  299. // [[HttpManager sharedHttpManager] HeaderUploadUrl:[NSString stringWithFormat:@"%@%@",BaseUrl,Modify_UserImage_Post] parameters:@{@"":@""} pictureData:UIImageJPEGRepresentation(image,1.0f) pictureKey:@"file" success:^(id _Nonnull responseObject) {
  300. //
  301. // NSDictionary *dic = responseObject;
  302. // NSLog(@"/n图片上传成功=====绝对路径=====/n%@",responseObject[@"AbsolutePath"]);
  303. // NSLog(@"/n图片上传成功=====相对路径=====/n%@",responseObject[@"RelativePath"]);
  304. //
  305. // [UserManager updateUserInfoDetail:IMAGE Param:dic[@"RelativePath"] Success:^(id _Nonnull responseObject) {
  306. // REMOVESHOW;
  307. // SHOWSUCCESS(@"修改成功");
  308. // } failure:^(NSError * _Nonnull error) {
  309. // REMOVESHOW
  310. // SHOWERROR([ZYCTool handerResultData:error])
  311. // }];
  312. //
  313. // } failure:^(NSError * _Nonnull error) {
  314. // REMOVESHOW
  315. // SHOWERROR([ZYCTool handerResultData:error])
  316. // }];
  317. // }];
  318. }
  319. } cancle:^{
  320. }] showWithAnimation:kAlertAnimationBottom];
  321. }break;
  322. case 1:{
  323. // EditMySignOrBriefVC *vc = [EditMySignOrBriefVC initEditMySignOrBriefVC];
  324. // vc.pagetype = EditMySignOrBriefPageType3;
  325. // vc.hidesBottomBarWhenPushed = YES;
  326. // [self.navigationController pushViewController:vc animated:YES];
  327. }break;
  328. case 2:{
  329. WS(weakSelf);
  330. [[ShowGenderAlertView initShowGenderAlertViewWithGender:self.showUserGenderLabel.text confirm:^(NSString * _Nonnull gender) {
  331. weakSelf.showUserGenderLabel.text = gender;
  332. NSString *sexType = [gender isEqualToString:@"男"] ? @"Male":@"Female";
  333. SHOWLOADING
  334. [UserManager updateUserInfoDetail:Sex Param:sexType Success:^(id _Nonnull responseObject) {
  335. REMOVESHOW
  336. [UserManager getUserInfoDetail];
  337. } failure:^(NSError * _Nonnull error) {
  338. REMOVESHOW
  339. SHOWERROR([ZYCTool handerResultData:error]);
  340. }];
  341. } cancle:^{
  342. }] showWithAnimation:kAlertAnimationBottom];
  343. }break;
  344. default:
  345. break;
  346. }
  347. }break;
  348. case 1:{
  349. switch (indexPath.row) {
  350. case 0:{
  351. }break;
  352. case 1:{
  353. EditMySignOrBriefVC *vc = [EditMySignOrBriefVC initEditMySignOrBriefVC];
  354. vc.pagetype = EditMySignOrBriefPageType2;
  355. vc.hidesBottomBarWhenPushed = YES;
  356. [self.navigationController pushViewController:vc animated:YES];
  357. }break;
  358. case 2:{
  359. EditMySignOrBriefVC *vc = [EditMySignOrBriefVC initEditMySignOrBriefVC];
  360. vc.pagetype = EditMySignOrBriefPageType1;
  361. vc.hidesBottomBarWhenPushed = YES;
  362. [self.navigationController pushViewController:vc animated:YES];
  363. }break;
  364. default:
  365. break;
  366. }
  367. }break;
  368. case 2:{
  369. switch (indexPath.row) {
  370. case 0:{
  371. MyQRCodeVC *vc = [MyQRCodeVC initMyQRCodeVC];
  372. vc.hidesBottomBarWhenPushed = YES;
  373. [self.navigationController pushViewController:vc animated:YES];
  374. // H5ViewController *vc = [[H5ViewController alloc] init];
  375. // vc.hidesBottomBarWhenPushed = YES;
  376. // [self.navigationController pushViewController:vc animated:YES];
  377. }break;
  378. case 1:{
  379. EditPhoneOrEmailVC *vc = [EditPhoneOrEmailVC initEditPhoneOrEmailVC];
  380. vc.pageType = BindingOrChangePhoneOrEmailPageType1;
  381. [self.navigationController pushViewController:vc animated:YES];
  382. // H6ViewController *vc = [[H6ViewController alloc] init];
  383. // vc.hidesBottomBarWhenPushed = YES;
  384. // [self.navigationController pushViewController:vc animated:YES];
  385. }break;
  386. case 2:{
  387. if (ISEmptyString([AppUserModel sharedAppUserModel].Email)) {
  388. EditPhoneOrEmailVC *vc = [EditPhoneOrEmailVC initEditPhoneOrEmailVC];
  389. vc.pageType = BindingOrChangePhoneOrEmailPageType4;
  390. [self.navigationController pushViewController:vc animated:YES];
  391. }else{
  392. EditPhoneOrEmailVC *vc = [EditPhoneOrEmailVC initEditPhoneOrEmailVC];
  393. vc.pageType = BindingOrChangePhoneOrEmailPageType2;
  394. [self.navigationController pushViewController:vc animated:YES];
  395. }
  396. }break;
  397. default:
  398. break;
  399. }
  400. }break;
  401. default:
  402. break;
  403. }
  404. }
  405. - (void)uploadImage{
  406. }
  407. - (NSString *)showStringLength:(NSString *)str
  408. {
  409. if (str.length >= 20) {
  410. NSString * newStr = [str substringToIndex:10];
  411. return [NSString stringWithFormat:@"%@...",newStr];
  412. }
  413. return str;
  414. }
  415. @end