123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242 |
- //
- // KBCommunityLeftController.m
- // YouHuiProject
- //
- // Created by 小花 on 2018/5/16.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "KBCommunityRightController.h"
- #import "KBCommunityCell.h"
- #import "UITableView+SDAutoTableViewCellHeight.h"
- #import "KBCommunityModel.h"
- #import "KBCommunityDetailModel.h"
- #import "KBShareGetFriendsModel.h"
- #import "KBShareGetFriendsView.h"
- #import "KBLoginViewController.h"
- @interface KBCommunityRightController ()
- <
- UITableViewDelegate,
- UITableViewDataSource,
- YHCommunityDelegate
- >
- @property (nonatomic, strong) UITableView *tableView;
- @property (nonatomic, strong) NSMutableArray *dataArr;
- @property (nonatomic ) NSInteger page;
- @property (nonatomic,strong ) UIView *backgroudView;
- @end
- @implementation KBCommunityRightController
- - (void)viewDidLoad {
- [super viewDidLoad];
- self.page=0;
- [self configTableView];
- [self requestData];
- }
- - (void)configTableView {
- self.view.backgroundColor = [UIColor yhGrayColor];
- [self.view addSubview:self.tableView];
-
- [[UIApplication sharedApplication].keyWindow addSubview:self.backgroudView];
- }
- - (void)requestData {
- NSString *url=[NSString stringWithFormat:@"%@/api/v2/adzoneCreate/secretOfMakingMoney",BaseURL];
- self.page++;
- NSDictionary *dic=@{
- @"page":@(self.page)
- };
- [KBHttp post:url params:dic success:^(id json) {
- if ([self.tableView.mj_header isRefreshing]) {
- [self.dataArr removeAllObjects];
- }
- NSArray *arr=[NSArray yy_modelArrayWithClass:[KBCommunityModel class] json:json[@"data"]];
- [self setNoDataView:arr];
- [self.dataArr addObjectsFromArray:arr];
-
- [self.tableView reloadData];
- [self.tableView.mj_header endRefreshing];
- } failure:^(NSError *error) {
- [self.tableView.mj_header endRefreshing];
- [self.tableView.mj_footer endRefreshing];
- }];
-
- }
- - (void)setNoDataView:(NSArray *)array {
- if (array.count > 0) {
- [self.tableView.mj_footer endRefreshing];
- }else {
- [self.tableView.mj_footer endRefreshingWithNoMoreData];
- }
- self.tableView.showNoDataView = YES;
- self.tableView.defaultNoDataText = @"暂无数据";
- self.tableView.defaultNoDataImage = [UIImage imageNamed:@"noData"];
- [self.tableView.mj_header endRefreshing];
- }
- #pragma mark ============ UITableView Delegate && DataSource ==========
- - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
- if ([cell respondsToSelector:@selector(setSeparatorInset:)]) {
- cell.separatorInset = UIEdgeInsetsMake(0, 0, 0, 0);
- }
-
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
- return 0.1;
- }
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- return self.dataArr.count;
- }
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
-
- KBCommunityModel *model = self.dataArr[indexPath.row];
- KBCommunityCell *cell = [KBCommunityCell cellWithTableView:tableView];
- cell.model = model;
- cell.delegate=self;
- return cell;
- }
- - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
-
- return [self cellHeightForIndexPath:indexPath cellContentViewWidth:SCREEN_WIDTH tableView:tableView];
- }
- - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
-
-
- }
- #pragma mark -代理 YHCommunityDelegate
- -(void)oneTouchShareWithModel:(KBCommunityModel *)model{
- // NSArray *arr=model.detail;
- // /api/v2/adzoneCreate/secretOneSharing
- [MobClick event:OneKeyShareCheats label:@"优选素材"];
- if([AccountTool isLogin]){
- UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
- pasteboard.string=model.note;
- NSString *url=[NSString stringWithFormat:@"%@/api/v2/adzoneCreate/secretOneSharing",BaseURL];
- NSDictionary *dic=@{@"id":model.Id};
- [KBHttp post:url params:dic success:^(id json) {
- NSArray *arr=[NSArray yy_modelArrayWithClass:[KBCommunityDetailModel class] json:json[@"data"]];
- NSDictionary *userinfo = json[@"userinfo"];
- if (arr.count>0) {
- __block NSInteger count=0;
- NSMutableArray *imgArr=[NSMutableArray array];
- __block NSInteger max=(arr.count<9?arr.count:9);
- self.backgroudView.hidden=NO;
- [SVProgressHUD showWithStatus:@"生成分享中"];
- for (int i=0;i<max;i++) {
- KBCommunityDetailModel *model=arr[i];
- KBShareGetFriendsModel *friendModel=[[KBShareGetFriendsModel alloc]init];
- friendModel.getFriendCode=@"";
- friendModel.QRcodeUrl=model.url;
- friendModel.imgUrl=model.img;
- KBShareGetFriendsView *view1=[[KBShareGetFriendsView alloc]initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT)];
- view1.model=friendModel;
- view1.userinfo = userinfo;
- __weak __typeof(view1) weakView1 = view1;
- view1.imgSuccBlock = ^{
- count++;
- [imgArr addObject: [weakView1 changeToImage]];
- if (count==max) {
- count=0;
- [SVProgressHUD dismiss];
- self.backgroudView.hidden=YES;
- UIActivityViewController *activityVC = [[UIActivityViewController alloc]initWithActivityItems:imgArr applicationActivities:nil];
- [self presentViewController:activityVC animated:YES completion:nil];
- }
- };
-
- }
- }else{
-
- [SVProgressHUD dismiss];
- [MBProgressHUD showMessage:@"没有商品可以分享"];
- }
- } failure:^(NSError *error) {
-
- }];
-
-
-
- }else{
- KBLoginViewController *login = [[KBLoginViewController alloc] init];
- login.loginSucc = ^{
- self.page=0;
- [self requestData];
- };
- [self.navigationController presentViewController:login animated:YES completion:nil];
- }
- }
- #pragma mark ------- layzer ---------
- - (UITableView *)tableView {
- if (!_tableView) {
- _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 1, SCREEN_WIDTH, ChildTableViewHeight) style:UITableViewStyleGrouped];
- _tableView.estimatedSectionHeaderHeight = 0;
- _tableView.estimatedSectionFooterHeight = 0;
- _tableView.sectionFooterHeight = 0;
- _tableView.sectionHeaderHeight = 0;
- _tableView.estimatedRowHeight = 0;
- _tableView.delegate = self;
- _tableView.dataSource = self;
- _tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
- _tableView.backgroundColor = [UIColor backgroudColor];
- _tableView.bounces = YES;
- _tableView.showsVerticalScrollIndicator = NO;
- _tableView.separatorColor = [UIColor lineColor];
- _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
- _tableView.mj_header = [MJRefreshNormalHeader headerWithRefreshingBlock:^{
- self.page = 0;
- [_tableView.mj_footer resetNoMoreData];
- [self requestData];
- }];
- MJRefreshBackNormalFooter *footer = [MJRefreshBackNormalFooter footerWithRefreshingBlock:^{
- [self requestData];
- }];
- _tableView.mj_footer = footer;
- [_tableView.mj_footer beginRefreshing];
- }
- return _tableView;
- }
- - (NSMutableArray *)dataArr {
- if (!_dataArr) {
- _dataArr = [NSMutableArray array];
- }
- return _dataArr;
- }
- -(UIView *)backgroudView{
- if (!_backgroudView) {
- _backgroudView=[[UIView alloc]initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT)];
- _backgroudView.backgroundColor=[[UIColor grayColor] colorWithAlphaComponent:0.2];
- _backgroudView.hidden=YES;
- }
- return _backgroudView;
- }
- @end
|