SourceGroupSearchVC.m 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878
  1. //
  2. // SourceGroupSearchVC.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/1/17.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "SourceGroupSearchVC.h"
  9. #import "TDGroupInfoListCell.h"
  10. #import "MyFavoriteVC.h"
  11. #import "CommonNoteVC.h"
  12. #import "OtherFavoriteVC.h"
  13. #import "OtherNoteBookVC.h"
  14. #import "DownFileViewController.h"
  15. #import "WorkFlowDetailsController.h"
  16. #import "MyApprovalPageDetail.h"
  17. #import "CountDataVC.h"
  18. #import "CommomSearchVC.h"
  19. #import "NoteBookVC.h"
  20. #import "OtherNoteBookVC.h"
  21. #import "MailListDetailVC.h"
  22. #import "MyFavoriteVC.h"
  23. #import "MyTDGroupViewController.h"
  24. #import "MoveViewController.h"
  25. #import "OtherFavoriteVC.h"
  26. #import "TDGroupInfoListVC.h"
  27. #import "WorkFlowDetailsController.h"
  28. #import "MyApprovalPageDetail.h"
  29. #import "DownFileViewController.h"
  30. #import "ShareListVC.h"
  31. #import "TDInterLeterHomeViewController.h"
  32. #import "MailListVC.h"
  33. #import "WaitWorkVC.h"
  34. #import "MyTDTopicSearchVC.h"
  35. #import "NoteBookShareVC.h"
  36. #import "GroupSquareVC.h"
  37. #import "TDGroupInfoListVC.h"
  38. #import "MyTDTopicSearchVC.h"
  39. @interface SourceGroupSearchVC ()<UITableViewDelegate,UITableViewDataSource,NoteBookShareVCDelegate>
  40. @property (nonatomic, strong) NSMutableArray *listArray;
  41. @property (strong, nonatomic) NoteBookShareVC *noteBookShareVC;
  42. @end
  43. @implementation SourceGroupSearchVC
  44. - (NSMutableArray *)listArray
  45. {
  46. if (!_listArray) {
  47. _listArray = [NSMutableArray array];
  48. }
  49. return _listArray;
  50. }
  51. - (void)viewDidLoad {
  52. [super viewDidLoad];
  53. self.fd_prefersNavigationBarHidden = YES;
  54. self.view.backgroundColor = RGB(255, 255, 255);
  55. self.tableView.delegate = self;
  56. self.tableView.dataSource = self;
  57. // [self.topNavSearch setBarPlaceholder:@"姓名/手机号/邮箱"];
  58. self.historySearchType = HistorySearchType_SourceGroup;
  59. [self addObserver:self forKeyPath:@"searchText" options:NSKeyValueObservingOptionNew context:nil];
  60. }
  61. - (void)dealloc
  62. {
  63. [[NSNotificationCenter defaultCenter] removeObserver:self];
  64. }
  65. - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary<NSKeyValueChangeKey,id> *)change context:(void *)context
  66. {
  67. id obj = [change objectForKey:@"new"];
  68. NSString * text = @"";
  69. if ([obj isKindOfClass:[NSString class]]) {
  70. text = obj;
  71. }else{
  72. text = [obj stringValue];
  73. }
  74. if (text.length > 0) {
  75. [self getData:text];
  76. }
  77. }
  78. - (void)getData:(NSString *)searchKey
  79. {
  80. [self.listArray removeAllObjects];
  81. WS(weakSelf);
  82. NSDictionary * paraDict = @{@"GroupId":@(0),
  83. @"UserId":@([AppUserModel sharedAppUserModel].Id),
  84. @"Key": searchKey,
  85. @"Page":@(1),
  86. @"PerPage": @(99999999),
  87. @"Sort":@""
  88. };
  89. SHOWLOADING
  90. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Topic_Page) parameters:paraDict responseStyle:JOSN success:^(id _Nonnull responseObject) {
  91. NSLog(@"%@",responseObject);
  92. REMOVESHOW
  93. TopicListModel * model = [TopicListModel modelWithDictionary:responseObject];
  94. [weakSelf.listArray addObjectsFromArray:model.Items];
  95. dispatch_async(dispatch_get_main_queue(), ^{
  96. [weakSelf.tableView reloadData];
  97. });
  98. } failure:^(NSError * _Nonnull error) {
  99. REMOVESHOW
  100. }];
  101. }
  102. #pragma mark - UITableViewDelegate
  103. - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
  104. return 1;
  105. }
  106. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
  107. return self.listArray.count;
  108. }
  109. - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
  110. return UITableViewAutomaticDimension;
  111. }
  112. - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
  113. WS(weakSelf);
  114. TopicListItemModel * model = [self.listArray objectAtIndex:indexPath.row];
  115. switch (model.DataType) {
  116. case TopiclistCellImage:
  117. {
  118. TDGroupInfoListCell * cell;
  119. switch (model.Data.count) {
  120. case 1:
  121. {
  122. cell = [TDGroupInfoListCell configCell1:tableView indexPath:indexPath];
  123. cell.cellImagV1.hidden = NO;
  124. cell.cellImagV2.hidden = YES;
  125. cell.cellImagV3.hidden = YES;
  126. cell.cellImagV4.hidden = YES;
  127. cell.cellImagV5.hidden = YES;
  128. cell.cellImagV6.hidden = YES;
  129. cell.cellImagV7.hidden = YES;
  130. cell.cellImagV8.hidden = YES;
  131. cell.cellImagV9.hidden = YES;
  132. TopicListSubModel * subModel0 = model.Data[0];
  133. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  134. }
  135. break;
  136. case 2:
  137. {
  138. cell = [TDGroupInfoListCell configCell1:tableView indexPath:indexPath];
  139. cell.cellImagV1.hidden = NO;
  140. cell.cellImagV2.hidden = NO;
  141. cell.cellImagV3.hidden = YES;
  142. cell.cellImagV4.hidden = YES;
  143. cell.cellImagV5.hidden = YES;
  144. cell.cellImagV6.hidden = YES;
  145. cell.cellImagV7.hidden = YES;
  146. cell.cellImagV8.hidden = YES;
  147. cell.cellImagV9.hidden = YES;
  148. TopicListSubModel * subModel0 = model.Data[0];
  149. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  150. TopicListSubModel * subModel1 = model.Data[1];
  151. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  152. }
  153. break;
  154. case 3:
  155. {
  156. cell = [TDGroupInfoListCell configCell2:tableView indexPath:indexPath];
  157. cell.cellImagV1.hidden = NO;
  158. cell.cellImagV2.hidden = NO;
  159. cell.cellImagV3.hidden = NO;
  160. cell.cellImagV4.hidden = YES;
  161. cell.cellImagV5.hidden = YES;
  162. cell.cellImagV6.hidden = YES;
  163. cell.cellImagV7.hidden = YES;
  164. cell.cellImagV8.hidden = YES;
  165. cell.cellImagV9.hidden = YES;
  166. TopicListSubModel * subModel0 = model.Data[0];
  167. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  168. TopicListSubModel * subModel1 = model.Data[1];
  169. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  170. TopicListSubModel * subModel2 = model.Data[2];
  171. [cell.cellImagV3 sd_setImageWithURL:[NSURL URLWithString:subModel2.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  172. }
  173. break;
  174. case 4:
  175. {
  176. cell = [TDGroupInfoListCell configCell3:tableView indexPath:indexPath];
  177. cell.cellImagV1.hidden = NO;
  178. cell.cellImagV2.hidden = NO;
  179. cell.cellImagV3.hidden = NO;
  180. cell.cellImagV4.hidden = NO;
  181. cell.cellImagV5.hidden = YES;
  182. cell.cellImagV6.hidden = YES;
  183. cell.cellImagV7.hidden = YES;
  184. cell.cellImagV8.hidden = YES;
  185. cell.cellImagV9.hidden = YES;
  186. TopicListSubModel * subModel0 = model.Data[0];
  187. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  188. TopicListSubModel * subModel1 = model.Data[1];
  189. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  190. TopicListSubModel * subModel2 = model.Data[2];
  191. [cell.cellImagV3 sd_setImageWithURL:[NSURL URLWithString:subModel2.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  192. TopicListSubModel * subModel3 = model.Data[3];
  193. [cell.cellImagV4 sd_setImageWithURL:[NSURL URLWithString:subModel3.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  194. }
  195. break;
  196. case 5:
  197. {
  198. cell = [TDGroupInfoListCell configCell4:tableView indexPath:indexPath];
  199. cell.cellImagV1.hidden = NO;
  200. cell.cellImagV2.hidden = NO;
  201. cell.cellImagV3.hidden = NO;
  202. cell.cellImagV4.hidden = NO;
  203. cell.cellImagV5.hidden = NO;
  204. cell.cellImagV6.hidden = YES;
  205. cell.cellImagV7.hidden = YES;
  206. cell.cellImagV8.hidden = YES;
  207. cell.cellImagV9.hidden = YES;
  208. TopicListSubModel * subModel0 = model.Data[0];
  209. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  210. TopicListSubModel * subModel1 = model.Data[1];
  211. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  212. TopicListSubModel * subModel2 = model.Data[2];
  213. [cell.cellImagV3 sd_setImageWithURL:[NSURL URLWithString:subModel2.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  214. TopicListSubModel * subModel3 = model.Data[3];
  215. [cell.cellImagV4 sd_setImageWithURL:[NSURL URLWithString:subModel3.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  216. TopicListSubModel * subModel4 = model.Data[4];
  217. [cell.cellImagV5 sd_setImageWithURL:[NSURL URLWithString:subModel4.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  218. }
  219. break;
  220. case 6:
  221. {
  222. cell = [TDGroupInfoListCell configCell4:tableView indexPath:indexPath];
  223. cell.cellImagV1.hidden = NO;
  224. cell.cellImagV2.hidden = NO;
  225. cell.cellImagV3.hidden = NO;
  226. cell.cellImagV4.hidden = NO;
  227. cell.cellImagV5.hidden = NO;
  228. cell.cellImagV6.hidden = NO;
  229. cell.cellImagV7.hidden = YES;
  230. cell.cellImagV8.hidden = YES;
  231. cell.cellImagV9.hidden = YES;
  232. TopicListSubModel * subModel0 = model.Data[0];
  233. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  234. TopicListSubModel * subModel1 = model.Data[1];
  235. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  236. TopicListSubModel * subModel2 = model.Data[2];
  237. [cell.cellImagV3 sd_setImageWithURL:[NSURL URLWithString:subModel2.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  238. TopicListSubModel * subModel3 = model.Data[3];
  239. [cell.cellImagV4 sd_setImageWithURL:[NSURL URLWithString:subModel3.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  240. TopicListSubModel * subModel4 = model.Data[4];
  241. [cell.cellImagV5 sd_setImageWithURL:[NSURL URLWithString:subModel4.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  242. TopicListSubModel * subModel5 = model.Data[5];
  243. [cell.cellImagV6 sd_setImageWithURL:[NSURL URLWithString:subModel5.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  244. }
  245. break;
  246. case 7:
  247. {
  248. cell = [TDGroupInfoListCell configCell5:tableView indexPath:indexPath];
  249. cell.cellImagV1.hidden = NO;
  250. cell.cellImagV2.hidden = NO;
  251. cell.cellImagV3.hidden = NO;
  252. cell.cellImagV4.hidden = NO;
  253. cell.cellImagV5.hidden = NO;
  254. cell.cellImagV6.hidden = NO;
  255. cell.cellImagV7.hidden = NO;
  256. cell.cellImagV8.hidden = YES;
  257. cell.cellImagV9.hidden = YES;
  258. TopicListSubModel * subModel0 = model.Data[0];
  259. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  260. TopicListSubModel * subModel1 = model.Data[1];
  261. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  262. TopicListSubModel * subModel2 = model.Data[2];
  263. [cell.cellImagV3 sd_setImageWithURL:[NSURL URLWithString:subModel2.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  264. TopicListSubModel * subModel3 = model.Data[3];
  265. [cell.cellImagV4 sd_setImageWithURL:[NSURL URLWithString:subModel3.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  266. TopicListSubModel * subModel4 = model.Data[4];
  267. [cell.cellImagV5 sd_setImageWithURL:[NSURL URLWithString:subModel4.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  268. TopicListSubModel * subModel5 = model.Data[5];
  269. [cell.cellImagV6 sd_setImageWithURL:[NSURL URLWithString:subModel5.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  270. TopicListSubModel * subModel6 = model.Data[6];
  271. [cell.cellImagV7 sd_setImageWithURL:[NSURL URLWithString:subModel6.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  272. }
  273. break;
  274. case 8:
  275. {
  276. cell = [TDGroupInfoListCell configCell5:tableView indexPath:indexPath];
  277. cell.cellImagV1.hidden = NO;
  278. cell.cellImagV2.hidden = NO;
  279. cell.cellImagV3.hidden = NO;
  280. cell.cellImagV4.hidden = NO;
  281. cell.cellImagV5.hidden = NO;
  282. cell.cellImagV6.hidden = NO;
  283. cell.cellImagV7.hidden = NO;
  284. cell.cellImagV8.hidden = NO;
  285. cell.cellImagV9.hidden = YES;
  286. TopicListSubModel * subModel0 = model.Data[0];
  287. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  288. TopicListSubModel * subModel1 = model.Data[1];
  289. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  290. TopicListSubModel * subModel2 = model.Data[2];
  291. [cell.cellImagV3 sd_setImageWithURL:[NSURL URLWithString:subModel2.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  292. TopicListSubModel * subModel3 = model.Data[3];
  293. [cell.cellImagV4 sd_setImageWithURL:[NSURL URLWithString:subModel3.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  294. TopicListSubModel * subModel4 = model.Data[4];
  295. [cell.cellImagV5 sd_setImageWithURL:[NSURL URLWithString:subModel4.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  296. TopicListSubModel * subModel5 = model.Data[5];
  297. [cell.cellImagV6 sd_setImageWithURL:[NSURL URLWithString:subModel5.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  298. TopicListSubModel * subModel6 = model.Data[6];
  299. [cell.cellImagV7 sd_setImageWithURL:[NSURL URLWithString:subModel6.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  300. TopicListSubModel * subModel7 = model.Data[7];
  301. [cell.cellImagV8 sd_setImageWithURL:[NSURL URLWithString:subModel7.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  302. }
  303. break;
  304. default:
  305. {
  306. cell = [TDGroupInfoListCell configCell5:tableView indexPath:indexPath];
  307. cell.cellImagV1.hidden = NO;
  308. cell.cellImagV2.hidden = NO;
  309. cell.cellImagV3.hidden = NO;
  310. cell.cellImagV4.hidden = NO;
  311. cell.cellImagV5.hidden = NO;
  312. cell.cellImagV6.hidden = NO;
  313. cell.cellImagV7.hidden = NO;
  314. cell.cellImagV8.hidden = NO;
  315. cell.cellImagV9.hidden = NO;
  316. TopicListSubModel * subModel0 = model.Data[0];
  317. [cell.cellImagV1 sd_setImageWithURL:[NSURL URLWithString:subModel0.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  318. TopicListSubModel * subModel1 = model.Data[1];
  319. [cell.cellImagV2 sd_setImageWithURL:[NSURL URLWithString:subModel1.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  320. TopicListSubModel * subModel2 = model.Data[2];
  321. [cell.cellImagV3 sd_setImageWithURL:[NSURL URLWithString:subModel2.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  322. TopicListSubModel * subModel3 = model.Data[3];
  323. [cell.cellImagV4 sd_setImageWithURL:[NSURL URLWithString:subModel3.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  324. TopicListSubModel * subModel4 = model.Data[4];
  325. [cell.cellImagV5 sd_setImageWithURL:[NSURL URLWithString:subModel4.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  326. TopicListSubModel * subModel5 = model.Data[5];
  327. [cell.cellImagV6 sd_setImageWithURL:[NSURL URLWithString:subModel5.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  328. TopicListSubModel * subModel6 = model.Data[6];
  329. [cell.cellImagV7 sd_setImageWithURL:[NSURL URLWithString:subModel6.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  330. TopicListSubModel * subModel7 = model.Data[7];
  331. [cell.cellImagV8 sd_setImageWithURL:[NSURL URLWithString:subModel7.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  332. TopicListSubModel * subModel8 = model.Data[8];
  333. [cell.cellImagV9 sd_setImageWithURL:[NSURL URLWithString:subModel8.File] placeholderImage:IMG(@"img_placeHolderVertical")];
  334. }
  335. break;
  336. }
  337. [cell.cellIconV sd_setImageWithURL:[NSURL URLWithString:model.AvatarUrl] placeholderImage:kUserDefaultHeadImage];
  338. [cell.fileBtn setTitle:model.GroupName forState:UIControlStateNormal];
  339. [cell.fileBtn setAction:^{
  340. [weakSelf enterFileWithModel:model];
  341. }];
  342. cell.ClickUserBlock = ^{
  343. [weakSelf showUserInfo:model.UserId];
  344. };
  345. cell.cellTimeL.text = [model.CreatedDate substringWithRange:NSMakeRange(5, 11)];
  346. cell.celltitleL.attributedText = [self setTitleWithStr:model.Title];
  347. cell.cellContentL.attributedText = [self setTextWithStr:model.Content];
  348. cell.cellNameL.text = model.UserName;
  349. cell.cellReadNumL.text = [NSString stringWithFormat:@"阅读:%ld",(long)model.ReadCount];
  350. [cell.cellLikeBtn setAction:^{
  351. [weakSelf likeAction:model withBtn:cell.cellLikeBtn index:indexPath];
  352. }];
  353. if (model.CommentCount > 0) {
  354. [cell.cellPingBtn setTitle:[NSString stringWithFormat:@"%ld",(long)model.CommentCount] forState:UIControlStateNormal];
  355. }else{
  356. [cell.cellPingBtn setTitle:@"评论" forState:UIControlStateNormal];
  357. }
  358. if (model.PraiseCount > 0) {
  359. [cell.cellLikeBtn setTitle:[NSString stringWithFormat:@"%ld",(long)model.PraiseCount] forState:UIControlStateNormal];
  360. }else{
  361. [cell.cellLikeBtn setTitle:@"赞" forState:UIControlStateNormal];
  362. }
  363. if (model.IsPraise) {
  364. [cell.cellLikeBtn setTitleColor:UIColorHex(#009AFF) forState:UIControlStateNormal];
  365. [cell.cellLikeBtn setImage:[UIImage imageNamed:@"收藏_赞_select"] forState:UIControlStateNormal];
  366. }else{
  367. [cell.cellLikeBtn setTitleColor:UIColorHex(#999999) forState:UIControlStateNormal];
  368. [cell.cellLikeBtn setImage:[UIImage imageNamed:@"收藏_赞"] forState:UIControlStateNormal];
  369. }
  370. [cell.cellPingBtn setAction:^{
  371. [weakSelf CommentPush:model];
  372. }];
  373. [cell.cellSendBtn setAction:^{
  374. [weakSelf reSend:model];
  375. }];
  376. if (model.Title.length == 0) {
  377. cell.TitleConstant.constant = 0;
  378. }else{
  379. cell.TitleConstant.constant = 10.f;
  380. }
  381. if (model.Content.length == 0) {
  382. cell.subTitleContant.constant = 0.f;
  383. }else{
  384. cell.subTitleContant.constant = 7.5f;
  385. }
  386. cell.fileContant.constant = 0.f;
  387. return cell;
  388. }
  389. break;
  390. case TopiclistCellFile:
  391. {
  392. TDGroupInfoListCell * cell = [TDGroupInfoListCell configCell6:tableView indexPath:indexPath];
  393. [cell.cellIconV sd_setImageWithURL:[NSURL URLWithString:model.AvatarUrl] placeholderImage:kUserDefaultHeadImage];
  394. [cell.fileBtn setTitle:model.GroupName forState:UIControlStateNormal];
  395. [cell.fileBtn setAction:^{
  396. [weakSelf enterFileWithModel:model];
  397. }];
  398. [cell.ClickFileAction setAction:^{
  399. [weakSelf pushFileWithModel:model.Data.firstObject];
  400. }];
  401. cell.cellNameL.text = model.UserName;
  402. cell.cellTimeL.text = [model.CreatedDate substringWithRange:NSMakeRange(5, 11)];
  403. cell.celltitleL.attributedText = [self setTitleWithStr:model.Title];
  404. cell.cellContentL.attributedText = [self setTextWithStr:model.Content];
  405. [cell setDataWithCell6:model.Data.firstObject];
  406. cell.cellReadNumL.text = [NSString stringWithFormat:@"阅读:%ld",(long)model.ReadCount];
  407. [cell.cellLikeBtn setAction:^{
  408. [weakSelf likeAction:model withBtn:cell.cellLikeBtn index:indexPath];
  409. }];
  410. if (model.CommentCount > 0) {
  411. [cell.cellPingBtn setTitle:[NSString stringWithFormat:@"%ld",(long)model.CommentCount] forState:UIControlStateNormal];
  412. }else{
  413. [cell.cellPingBtn setTitle:@"评论" forState:UIControlStateNormal];
  414. }
  415. if (model.PraiseCount > 0) {
  416. [cell.cellLikeBtn setTitle:[NSString stringWithFormat:@"%ld",(long)model.PraiseCount] forState:UIControlStateNormal];
  417. }else{
  418. [cell.cellLikeBtn setTitle:@"赞" forState:UIControlStateNormal];
  419. }
  420. if (model.IsPraise) {
  421. [cell.cellLikeBtn setTitleColor:UIColorHex(#009AFF) forState:UIControlStateNormal];
  422. [cell.cellLikeBtn setImage:[UIImage imageNamed:@"收藏_赞_select"] forState:UIControlStateNormal];
  423. }else{
  424. [cell.cellLikeBtn setTitleColor:UIColorHex(#999999) forState:UIControlStateNormal];
  425. [cell.cellLikeBtn setImage:[UIImage imageNamed:@"收藏_赞"] forState:UIControlStateNormal];
  426. }
  427. [cell.cellPingBtn setAction:^{
  428. [weakSelf CommentPush:model];
  429. }];
  430. [cell.cellSendBtn setAction:^{
  431. [weakSelf reSend:model];
  432. }];
  433. if (model.Title.length == 0) {
  434. cell.TitleConstant.constant = 0;
  435. }else{
  436. cell.TitleConstant.constant = 10.f;
  437. }
  438. if (model.Content.length == 0) {
  439. cell.subTitleContant.constant = 0.f;
  440. }else{
  441. cell.subTitleContant.constant = 7.5f;
  442. }
  443. cell.ClickUserBlock = ^{
  444. [weakSelf showUserInfo:model.UserId];
  445. };
  446. return cell;
  447. }
  448. break;
  449. default:///TopiclistCellNone
  450. {
  451. TDGroupInfoListCell * cell = [TDGroupInfoListCell configCell0:tableView indexPath:indexPath];
  452. [cell.cellIconV sd_setImageWithURL:[NSURL URLWithString:model.AvatarUrl] placeholderImage:kUserDefaultHeadImage];
  453. [cell.fileBtn setTitle:model.GroupName forState:UIControlStateNormal];
  454. [cell.fileBtn setAction:^{
  455. [weakSelf enterFileWithModel:model];
  456. }];
  457. cell.cellNameL.text = model.UserName;
  458. cell.cellTimeL.text = [model.CreatedDate substringWithRange:NSMakeRange(5, 11)];
  459. cell.celltitleL.attributedText = [self setTitleWithStr:model.Title];
  460. cell.cellContentL.attributedText = [self setTextWithStr:model.Content];
  461. cell.cellReadNumL.text = [NSString stringWithFormat:@"阅读:%ld",(long)model.ReadCount];
  462. [cell.cellLikeBtn setAction:^{
  463. [weakSelf likeAction:model withBtn:cell.cellLikeBtn index:indexPath];
  464. }];
  465. if (model.CommentCount > 0) {
  466. [cell.cellPingBtn setTitle:[NSString stringWithFormat:@"%ld",(long)model.CommentCount] forState:UIControlStateNormal];
  467. }else{
  468. [cell.cellPingBtn setTitle:@"评论" forState:UIControlStateNormal];
  469. }
  470. if (model.PraiseCount > 0) {
  471. [cell.cellLikeBtn setTitle:[NSString stringWithFormat:@"%ld",(long)model.PraiseCount] forState:UIControlStateNormal];
  472. }else{
  473. [cell.cellLikeBtn setTitle:@"赞" forState:UIControlStateNormal];
  474. }
  475. if (model.IsPraise) {
  476. [cell.cellLikeBtn setTitleColor:UIColorHex(#009AFF) forState:UIControlStateNormal];
  477. [cell.cellLikeBtn setImage:[UIImage imageNamed:@"收藏_赞_select"] forState:UIControlStateNormal];
  478. }else{
  479. [cell.cellLikeBtn setTitleColor:UIColorHex(#999999) forState:UIControlStateNormal];
  480. [cell.cellLikeBtn setImage:[UIImage imageNamed:@"收藏_赞"] forState:UIControlStateNormal];
  481. }
  482. [cell.cellPingBtn setAction:^{
  483. [weakSelf CommentPush:model];
  484. }];
  485. [cell.cellSendBtn setAction:^{
  486. [weakSelf reSend:model];
  487. }];
  488. if (model.Title.length == 0) {
  489. cell.TitleConstant.constant = 0;
  490. }else{
  491. cell.TitleConstant.constant = 10.f;
  492. }
  493. if (model.Content.length == 0) {
  494. cell.subTitleContant.constant = 0.f;
  495. }else{
  496. cell.subTitleContant.constant = 7.5f;
  497. }
  498. cell.ClickUserBlock = ^{
  499. [weakSelf showUserInfo:model.UserId];
  500. };
  501. return cell;
  502. }
  503. break;
  504. }
  505. }
  506. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
  507. [tableView deselectRowAtIndexPath:indexPath animated:YES];
  508. TopicListItemModel * model = [self.listArray objectAtIndex:indexPath.row];
  509. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  510. vc.type = CollectModel_Toipc;
  511. vc.Id = model.Id;
  512. [self.navigationController pushViewController:vc animated:YES];
  513. }
  514. - (void)enterFileWithModel:(TopicListItemModel *)model
  515. {
  516. TDGroupInfoListVC * vc = [TDGroupInfoListVC initTDGroupInfoListVC];
  517. vc.titleStr = model.GroupName;
  518. vc.GroupId = model.GroupId;
  519. [self.navigationController pushViewController:vc animated:YES];
  520. }
  521. - (void)showUserInfo:(NSInteger)userId
  522. {
  523. MailListDetailVC * vc = [MailListDetailVC initMailListDetailVC];
  524. vc.indexId = userId;
  525. [self.navigationController pushViewController:vc animated:YES];
  526. }
  527. #pragma mark - 点击评论
  528. - (void)likeAction:(TopicListItemModel *)model withBtn:(UIButton *)btn index:(NSIndexPath *)indexPath
  529. {
  530. WS(weakSelf);
  531. NSDictionary * paraDict = @{@"SourceId":@(model.Id),
  532. @"TypeValue":@(3),///3 笔记
  533. @"AnalyzeType":@(1)
  534. };
  535. btn.enabled = NO;
  536. [[HttpManager sharedHttpManager] POSTUrl:Host(API_APP_Analyze_Set) parameters:paraDict responseStyle:DATA success:^(id _Nonnull responseObject) {
  537. btn.enabled = YES;
  538. model.IsPraise = !model.IsPraise;
  539. model.PraiseCount = model.IsPraise ? (model.PraiseCount + 1) : (model.PraiseCount - 1);
  540. dispatch_async(dispatch_get_main_queue(), ^{
  541. [weakSelf.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];
  542. });
  543. } failure:^(NSError * _Nonnull error) {
  544. btn.enabled = YES;
  545. }];
  546. }
  547. - (void)CommentPush:(TopicListItemModel *)model
  548. {
  549. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  550. vc.type = CollectModel_Toipc;
  551. vc.RefreshTopicBlock = ^{
  552. };
  553. vc.Id = model.Id;
  554. vc.isComment = YES;
  555. [self.navigationController pushViewController:vc animated:YES];
  556. }
  557. - (void)reSend:(TopicListItemModel *)model
  558. {
  559. FlowAttachmentsModel * topicModel = [[FlowAttachmentsModel alloc] init];
  560. topicModel.SoureTypeId = CollectModel_Toipc;
  561. topicModel.Title = model.Title;
  562. topicModel.SoureId = model.Id;
  563. topicModel.Title = model.Title;
  564. topicModel.Author = model.UserName;
  565. self.sendModel = topicModel;
  566. [self.noteBookShareVC initNoteBookShareData];
  567. self.noteBookShareVC.view.hidden = !self.noteBookShareVC.view.hidden;
  568. }
  569. - (NoteBookShareVC *)noteBookShareVC{
  570. if (_noteBookShareVC == nil) {
  571. _noteBookShareVC = [NoteBookShareVC initNoteBookShareVC];
  572. [_noteBookShareVC.view setFrame:CGRectMake(0,0, SCREEN_WIDTH, SCREEN_HEIGHT)];
  573. [_noteBookShareVC.view setHidden:YES];
  574. _noteBookShareVC.delegate = self;
  575. }
  576. return _noteBookShareVC;
  577. }
  578. - (void)userSelectType:(NSString *)typeName WithIndexPath:(NSIndexPath *)indexPath
  579. {
  580. self.noteBookShareVC.view.hidden = !self.noteBookShareVC.view.hidden;
  581. if ([typeName isEqualToString:@"发给微信好友"]) {
  582. [self returnToWechatSession];
  583. }else if ([typeName isEqualToString:@"发到朋友圈"]){
  584. [self returnToWechatTimeLine];
  585. }else if ([typeName isEqualToString:@"发到微博"]){
  586. [self returnToSina];
  587. }else if ([typeName isEqualToString:@"发给QQ好友"]){
  588. [self returnToQQ];
  589. }else if ([typeName isEqualToString:@"发到消息"]){
  590. [self returnToMessage];
  591. }else if ([typeName isEqualToString:@"发到小组"]){
  592. [self returnToGroup];
  593. }else if ([typeName isEqualToString:@"发到笔记"]){
  594. [self returnToNote];
  595. }else if ([typeName isEqualToString:@"发到话题"]){
  596. [self returnToTopic];
  597. }else{
  598. }
  599. }
  600. - (void)shareWebPageToPlatformType:(UMSocialPlatformType)platformType title:(NSString *)title desc:(NSString *)desc url:(NSString *)url
  601. {
  602. //创建分享消息对象
  603. UMSocialMessageObject *messageObject = [UMSocialMessageObject messageObject];
  604. messageObject.title = title;
  605. //创建网页内容对象
  606. UMShareWebpageObject *shareObject = [UMShareWebpageObject shareObjectWithTitle:title descr:desc thumImage:IMG(@"logo_60")];
  607. //设置网页地址
  608. shareObject.webpageUrl = url;
  609. //分享消息对象设置分享内容对象
  610. messageObject.shareObject = shareObject;
  611. //调用分享接口
  612. [[UMSocialManager defaultManager] shareToPlatform:platformType messageObject:messageObject currentViewController:self completion:^(id data, NSError *error) {
  613. if (error) {
  614. NSLog(@"************Share fail with error %@*********",error);
  615. }else{
  616. NSLog(@"response data is %@",data);
  617. }
  618. }];
  619. }
  620. - (void)returnToWechatSession
  621. {
  622. [self shareWebPageToPlatformType:UMSocialPlatformType_WechatSession title:self.sendModel.Title desc:[NSString stringWithFormat:@"来自-%@",self.sendModel.Author] url:[self returnUrl]];
  623. }
  624. - (void)returnToWechatTimeLine
  625. {
  626. [self shareWebPageToPlatformType:UMSocialPlatformType_WechatTimeLine title:self.sendModel.Title desc:[NSString stringWithFormat:@"来自-%@",self.sendModel.Author] url:[self returnUrl]];
  627. }
  628. - (void)returnToSina
  629. {
  630. [self shareWebPageToPlatformType:UMSocialPlatformType_Sina title:self.sendModel.Title desc:[NSString stringWithFormat:@"来自-%@",self.sendModel.Author] url:[self returnUrl]];
  631. }
  632. - (void)returnToQQ
  633. {
  634. [self shareWebPageToPlatformType:UMSocialPlatformType_QQ title:self.sendModel.Title desc:[NSString stringWithFormat:@"来自-%@",self.sendModel.Author] url:[self returnUrl]];
  635. }
  636. - (NSString *)returnUrl
  637. {
  638. NSString * url = [NSString stringWithFormat:@"%@%ld",Host(@"/admin/mobile/noteDetailsWx?"),(long)self.sendModel.Id];
  639. return url;
  640. }
  641. #pragma mark - 分享功能
  642. - (void)returnToMessage
  643. {
  644. ShareListVC * vc = [ShareListVC initShareListVC];
  645. vc.sendModel = self.sendModel;
  646. vc.isReturn = YES;
  647. [self.navigationController pushViewController:vc animated:YES];
  648. }
  649. - (void)returnToGroup
  650. {
  651. MyTDGroupViewController * vc = [[MyTDGroupViewController alloc] init];
  652. vc.type = CollectModel_Group;
  653. vc.sendModel = self.sendModel;
  654. vc.isReturn = YES;
  655. [self.navigationController pushViewController:vc animated:YES];
  656. }
  657. - (void)returnToNote
  658. {
  659. MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
  660. vc.type = CollectModel_NoteBook;
  661. vc.sendModel = self.sendModel;
  662. vc.isReturn = YES;
  663. [self.navigationController pushViewController:vc animated:YES];
  664. }
  665. - (void)returnToTopic
  666. {
  667. MyTDTopicCreateVC * vc = [MyTDTopicCreateVC initMyTDTopicCreateVC];
  668. vc.type = CollectModel_Toipc;
  669. vc.sendModel = self.sendModel;
  670. vc.isReturn = YES;
  671. [self.navigationController pushViewController:vc animated:YES];
  672. }
  673. #pragma mark - 点击文件跳转
  674. - (void)pushFileWithModel:(TopicListSubModel *)model
  675. {
  676. WS(weakSelf);
  677. switch (model.Type) {
  678. case CollectModel_Aritle:
  679. {
  680. SHOWLOADING
  681. [[HttpManager sharedHttpManager] GETWithUrl:[NSString stringWithFormat:@"%@%ld",Article_Detail_Get,(long)model.Id] parameters:@{} success:^(id _Nonnull responseObject) {
  682. REMOVESHOW;
  683. Item *itemModel = [[Item alloc]initWithDictionary:responseObject error:nil];
  684. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  685. vc.type = CollectModel_Aritle;
  686. vc.Id = itemModel.Id;
  687. [weakSelf.navigationController pushViewController:vc animated:YES];
  688. } failure:^(NSError * _Nonnull error) {
  689. SHOWERROR([ZYCTool handerResultData:error]);
  690. }];
  691. }
  692. break;
  693. case CollectModel_Toipc:
  694. {
  695. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  696. vc.type = CollectModel_Toipc;
  697. vc.Id = model.Id;
  698. [self.navigationController pushViewController:vc animated:YES];
  699. }
  700. break;
  701. case CollectModel_NewTopic:
  702. {
  703. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  704. vc.type = CollectModel_NewTopic;
  705. vc.Id = model.Id;
  706. [self.navigationController pushViewController:vc animated:YES];
  707. }
  708. break;
  709. case CollectModel_Collect:
  710. {
  711. }
  712. break;
  713. case CollectModel_NoteBook:
  714. {
  715. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  716. vc.type = CollectModel_NoteBook;
  717. vc.Id = model.Id;
  718. [self.navigationController pushViewController:vc animated:YES];
  719. }
  720. break;
  721. case CollectModel_CollectFile:{
  722. if (model.SourceUserId == [AppUserModel sharedAppUserModel].Id) {
  723. MyFavoriteVC *vc = [MyFavoriteVC initMyFavoriteVC];
  724. vc.listType = model.Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  725. vc.ParentId = 0;
  726. vc.FolderId = model.Id;
  727. vc.myTitle = model.Title;
  728. [self.navigationController pushViewController:vc animated:YES];
  729. }else{
  730. OtherFavoriteVC *vc = [OtherFavoriteVC initOtherFavoriteVC];
  731. vc.listType = model.Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  732. vc.ParentId = 0;
  733. vc.FolderId = model.Id;
  734. vc.myTitle = model.Title;
  735. vc.VisitUserId = model.SourceUserId;
  736. [self.navigationController pushViewController:vc animated:YES];
  737. }
  738. }break;
  739. case CollectModel_NoteFile:{
  740. if (model.SourceUserId == [AppUserModel sharedAppUserModel].Id) {
  741. NoteBookVC *vc = [NoteBookVC initNoteBookVC];
  742. vc.listType = model.Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  743. vc.ParentId = 0;
  744. vc.FolderId = model.Id;
  745. vc.myTitle = model.Title;
  746. vc.VisitUserId = 0;
  747. [self.navigationController pushViewController:vc animated:YES];
  748. }else{
  749. OtherNoteBookVC *vc = [OtherNoteBookVC initOtherNoteBookVC];
  750. vc.listType = model.Id == 0 ? MyFavoriteListLevelTypeA : MyFavoriteListLevelTypeB;
  751. vc.ParentId = 0;
  752. vc.FolderId = model.Id;
  753. vc.myTitle = model.Title;
  754. vc.VisitUserId = model.SourceUserId;
  755. [self.navigationController pushViewController:vc animated:YES];
  756. }
  757. }break;
  758. case CollectModel_Notice:
  759. {
  760. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  761. vc.type = CollectModel_Notice;
  762. vc.Id = model.Id;
  763. [self.navigationController pushViewController:vc animated:YES];
  764. }
  765. break;
  766. case CollectModel_InterMail:
  767. {
  768. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  769. vc.type = CollectModel_InterMail;
  770. vc.Id = model.Id;
  771. [self.navigationController pushViewController:vc animated:YES];
  772. }
  773. break;
  774. case CollectModel_Group:
  775. {
  776. TDGroupInfoListVC * vc = [TDGroupInfoListVC initTDGroupInfoListVC];
  777. vc.GroupId = model.Id;
  778. vc.titleStr = model.Title;
  779. [self.navigationController pushViewController:vc animated:YES];
  780. }
  781. break;
  782. case CollectModel_meetMian:
  783. {
  784. MyTDTopicDetailVC * vc = [MyTDTopicDetailVC initMyTDTopicDetailVC];
  785. vc.type = CollectModel_meetMian;
  786. vc.Id = model.Id;
  787. [self.navigationController pushViewController:vc animated:YES];
  788. }
  789. break;
  790. case CollectModel_meetDetail:
  791. {
  792. WorkFlowDetailsController * vc = [[WorkFlowDetailsController alloc] initWithId:model.Id];
  793. [self.navigationController pushViewController:vc animated:YES];
  794. }
  795. break;
  796. case CollectModel_work:
  797. {
  798. MyApprovalPageDetail * vc = [[MyApprovalPageDetail alloc]init];
  799. vc.pageType = Type_ONEC;
  800. vc.indexId = model.Id;
  801. vc.title = model.Title;
  802. vc.TodoId = model.Id;
  803. [self.navigationController pushViewController:vc animated:YES];
  804. }
  805. break;
  806. default:
  807. {
  808. DownFileViewController *vc = [[DownFileViewController alloc]init];
  809. FlowAttachmentsModel * fmodel = [[FlowAttachmentsModel alloc] init];
  810. fmodel.SoureId = model.Id;
  811. fmodel.Title = model.Title;
  812. fmodel.Url = model.File;
  813. vc.model = fmodel;
  814. [self.navigationController pushViewController:vc animated:YES];
  815. }
  816. break;
  817. }
  818. }
  819. - (void)pushSearchVC
  820. {
  821. MyTDTopicSearchVC * vc = [[MyTDTopicSearchVC alloc] init];
  822. vc.searchType = TDTopicSearch;
  823. [self.navigationController pushViewController:vc animated:YES];
  824. }
  825. - (NSAttributedString *)setTextWithStr:(NSString *)str
  826. {
  827. if (str.length == 0) {
  828. return [[NSAttributedString alloc] initWithString:@""];
  829. }
  830. NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:str];
  831. [attributedString addAttribute:NSFontAttributeName value:[UIFont fontWithName:@"PingFang SC" size:16] range:NSMakeRange(0, str.length)];
  832. [attributedString addAttribute:NSForegroundColorAttributeName value:UIColorHex(#484848) range:NSMakeRange(0, str.length)];
  833. NSMutableParagraphStyle *paraStyle = [[NSMutableParagraphStyle alloc]init];
  834. paraStyle.alignment = NSTextAlignmentJustified;//两端对齐
  835. [paraStyle setLineSpacing:5];//行间距
  836. [attributedString addAttribute:NSParagraphStyleAttributeName value:paraStyle range:NSMakeRange(0, str.length)];
  837. [attributedString addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInteger:NSUnderlineStyleNone] range:NSMakeRange(0, str.length)];
  838. return attributedString;
  839. }
  840. - (NSAttributedString *)setTitleWithStr:(NSString *)str
  841. {
  842. if (str.length == 0) {
  843. return [[NSAttributedString alloc] initWithString:@""];
  844. }
  845. NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:str];
  846. [attributedString addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:18] range:NSMakeRange(0, str.length)];
  847. [attributedString addAttribute:NSForegroundColorAttributeName value:UIColorHex(0x0a0a0a) range:NSMakeRange(0, str.length)];
  848. NSMutableParagraphStyle *paraStyle = [[NSMutableParagraphStyle alloc]init];
  849. paraStyle.alignment = NSTextAlignmentJustified;//两端对齐
  850. [paraStyle setLineSpacing:5];//行间距
  851. [attributedString addAttribute:NSParagraphStyleAttributeName value:paraStyle range:NSMakeRange(0, str.length)];
  852. [attributedString addAttribute:NSUnderlineStyleAttributeName value:[NSNumber numberWithInteger:NSUnderlineStyleNone] range:NSMakeRange(0, str.length)];
  853. return attributedString;
  854. }
  855. @end