当前位置: 代码迷 >> 综合 >> Masonry+MVC+AFNetworking动态获取列表
  详细解决方案

Masonry+MVC+AFNetworking动态获取列表

热度:95   发布时间:2023-11-18 04:10:41.0

本章节主要讲述利用MVC架构与AF网络,搭建获取到该需要的信息。以这种方式实现,主要是项目结构直观明了,不会像从前那样混乱。真正从事IT,是需要把项目归纳起来,让别人看的舒适,也让自己在今后的维护上有更好的优势,那么,具体实现也是非常之简单的,跟着我一步一步地走…

它们的目录名以MVC方式创建(model,view,controller);

  • model:放置服务器的数据信息,如:jaon的请求,返回函数成功与失败。
  • view:该界面展示的UI,如利用Masonry方式。
  • controller:控制器文件,主要写功能,函数的调用与实现。如:model写的请求体,在控制器加入相应代理,进行调用成功与失败的结果,从而显示该项目需求的功能。

也可以多一个cell文件,主要是把view层和cell联合,view实现最外层的布局,而cell则在view上进行布局,实现剩余的界面UI,进行展示描述。

具体程序如下所示:
在这里插入图片描述
一:Model层(device,devicebean两个文件是该对应json数据的每个字符数,以及请求体的成功与失败的返回)

<device.h>这个是获取服务器json成功后的每一个对应的实际字符。

#import <Foundation/Foundation.h>NS_ASSUME_NONNULL_BEGIN@interface Device : NSObject@property(nonatomic, strong) NSString *userid;@property(nonatomic, strong) NSString *companyid;@property(nonatomic, strong) NSString *devicename;@property(nonatomic, strong) NSString *address;@property(nonatomic, strong) NSString *lat;@property(nonatomic, strong) NSString *lon;@property(nonatomic, strong) NSString *isonline;@endNS_ASSUME_NONNULL_END

<device.m>

#import "Device.h"@implementation Device@end

<devicebean.h>这个是服务器设置的data里面的数据

#import <Foundation/Foundation.h>
#import "Device.h"
#import "BaseBean.h"NS_ASSUME_NONNULL_BEGIN@interface DeviceBean : BaseBean@property(nonatomic,copy) NSString *code;@property(nonatomic,copy) NSString *message;@property(nonatomic,copy) NSArray *data;+(NSDictionary*)mj_objectClassInArray;@endNS_ASSUME_NONNULL_END

<DeviceBean.m>

#import "DeviceBean.h"@implementation DeviceBean+(NSDictionary*)mj_objectClassInArray{return @{@"data":[Device class],};
}@end

<WifiModel.h> 这个文件主要写json的返回函数,成功失败的代理,以及设备的数据获取;

#import <Foundation/Foundation.h>
#import "BaseModel.h"
#import "AFNetRequest.h"
#import "DeviceBean.h"@protocol WifiModelDelegate <NSObject>- (void)WifiSuccess:(NSString * _Nullable) result;- (void)WifiFail:(NSString * _Nullable) result;@endNS_ASSUME_NONNULL_BEGIN
@interface WifiModel : BaseModel@property(weak,nonatomic) id<WifiModelDelegate> delegate;-(void)getAllDevice:(NSString *)userid;//设备名称
@property(copy,nonatomic) NSString *deviceName;
//设备RSSI的值
@property(copy,nonatomic) NSString *deviceRssi;
//设备的MAC地址
@property(copy,nonatomic) NSString *deviceAddre;@property(assign,nonatomic) BOOL isselect;@end
NS_ASSUME_NONNULL_END

<WifiModel.m>重点是这个,请求的函数体。所有的请求都归根于此。要详细的好好看看哦。

#import "WifiModel.h"@implementation WifiModel-(void)getAllDevice:(NSString *)userid{NSString *strUrl = [NSString stringWithFormat:@"%@device/getAllDevice",BASE_URL];NSDictionary *params = @{@"userid":userid};[[AFNetRequest sharedInstance] setHeaderWithValue:@"xx10925"  HeaderField:@"token"];[[AFNetRequest sharedInstance] POST:strUrl Parameters:params Success:^(id  _Nullable responseObject){DeviceBean *bean = [DeviceBean mj_objectWithKeyValues:responseObject];if([bean.code isEqual:@"200"]){if([self.delegate respondsToSelector:@selector(WifiSuccess:)]){[self.delegate WifiSuccess:bean.data];}}else{if([self.delegate respondsToSelector:@selector(WifiFail:)]){[self.delegate WifiFail:bean.message];}}} Failure:^(NSError * _Nonnull error){if([self.delegate respondsToSelector:@selector(WifiFail:)]){[self.delegate WifiFail:error.localizedDescription];}} Cookie:^(NSURLSessionDataTask * _Nullable task){if (@available(iOS 11.0, *)) {NSLog(@"%@",task.accessibilityAttributedLabel);} else {// Fallback on earlier versions}}];
}@end

二:View层(这个是总布局)

<WifiView.h>

#import <UIKit/UIKit.h>@interface WifiView : UIView//设置代理
@property(nonatomic,strong) UITableView *mDeviceTb;@end

<WifiView.m>

#import "WifiView.h"
#ifdef __OBJC__
//define this constant if you want to use Masonry without the 'mas_' prefix
#define MAS_SHORTHAND
//define this constant if you want to enable auto-boxing for default syntax
#define MAS_SHORTHAND_GLOBALS
#import "Masonry.h"
#endif@implementation WifiView-(instancetype) init{self = [super init];if(self){[self initView];}return self;
}-(void)initView{self.mDeviceTb = [[UITableView alloc] init];[self addSubview:self.mDeviceTb];//布局[self.mDeviceTb makeConstraints:^(MASConstraintMaker *make){make.left.equalTo(self).offset(0);make.right.equalTo(self).offset(0);make.top.equalTo(self).offset(0);make.bottom.equalTo(self).offset(-49);}];}@end

三:Cell(这个是在view外层上再进行写该需求的样式)

<WifiCell.h>

#import <UIKit/UIKit.h>
#import "CommonUtil.h"
@interface WifiCell : UITableViewCell@property(nonatomic,strong) UIView *mMainVw;@property (strong, nonatomic) UILabel *mDeviceNameLb;@property (strong, nonatomic) UILabel *mDeviceRssiLb;@property (strong, nonatomic) UILabel *mDeviceAddreLb;@property(nonatomic,strong) UIImageView *mStatusIv;@end

<WifiCell.m>

#import "WifiCell.h"
#ifdef __OBJC__
//define this constant if you want to use Masonry without the 'mas_' prefix
#define MAS_SHORTHAND
//define this constant if you want to enable auto-boxing for default syntax
#define MAS_SHORTHAND_GLOBALS
#import "Masonry.h"
#endif@implementation WifiCell- (void)awakeFromNib {[super awakeFromNib];// Initialization code
}- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];if(self){CommonUtil *cmUtil = [[CommonUtil alloc] init];self.mMainVw = [[UIView alloc] init];self.mMainVw.backgroundColor = [cmUtil stringToColor:@"#EAEAEA"];self.mMainVw.layer.cornerRadius = 5.f;self.mMainVw.clipsToBounds=YES;self.mMainVw.layer.shadowColor=[UIColor blackColor].CGColor;self.mMainVw.layer.shadowOffset=CGSizeMake(5, 5);self.mMainVw.layer.shadowOpacity=0.5;self.mMainVw.layer.shadowRadius=5;[self addSubview:self.mMainVw];[self.mMainVw makeConstraints:^(MASConstraintMaker *make){make.top.equalTo(self).offset(10);make.left.equalTo(self).offset(10);make.right.equalTo(self).offset(-10);make.height.equalTo(self).offset(-10);}];self.mStatusIv = [[UIImageView alloc] init];[self.mMainVw addSubview:self.mStatusIv];[self.mStatusIv makeConstraints:^(MASConstraintMaker *make){make.top.equalTo(self.mMainVw).offset(30);make.left.equalTo(self.mMainVw).offset(15);make.width.equalTo(@25);make.height.equalTo(@25);}];self.mDeviceNameLb = [[UILabel alloc] init];self.mDeviceNameLb.textColor = [UIColor blackColor];self.mDeviceNameLb.font = [UIFont fontWithName:@"Helvetica-Bold" size:18];self.mDeviceNameLb.textAlignment = NSTextAlignmentCenter;[self.mMainVw addSubview:self.mDeviceNameLb];[self.mDeviceNameLb makeConstraints:^(MASConstraintMaker *make){make.top.equalTo(self.mMainVw).offset(10);make.left.equalTo(self.mMainVw).offset(55);make.right.equalTo(self.mMainVw).offset(-10);make.height.equalTo(@30);}];self.mDeviceAddreLb = [[UILabel alloc] init];self.mDeviceAddreLb.textColor = [UIColor grayColor];self.mDeviceAddreLb.font = [UIFont fontWithName:@"Helvetica" size:14];self.mDeviceAddreLb.textAlignment = NSTextAlignmentCenter;[self.mMainVw addSubview:self.mDeviceAddreLb];[self.mDeviceAddreLb makeConstraints:^(MASConstraintMaker *make){make.top.equalTo(self.mDeviceNameLb).offset(40);make.left.equalTo(self.mMainVw).offset(58);make.right.equalTo(self.mMainVw).offset(-10);make.height.equalTo(@30);}];}return self;
}- (void)setSelected:(BOOL)selected animated:(BOOL)animated {[super setSelected:selected animated:animated];// Configure the view for the selected state
}@end

四:Controller(主控制器文件,上面也描述了,就是写他的功能文件,调用外部的数据,与其他的一些逻辑)

<WifiController.h>

#import <UIKit/UIKit.h>
#import "BaseTableViewController.h"
#import "WifiView.h"
#import "WifiModel.h"
#import "WifiCell.h"NS_ASSUME_NONNULL_BEGIN@interface WifiController : BaseTableViewController@property(nonatomic,strong) WifiView *WfView;@property(nonatomic,strong) WifiModel *WfModel;@property(nonatomic,strong) WifiCell *WfCell;@property(strong, nonatomic) NSMutableArray *dcList;@end
NS_ASSUME_NONNULL_END

<WifiController.m>

#import "WifiController.h"#define CELLIDENTIFITER "DEVICETABLEVIEWCELLS"@interface WifiController ()<WifiModelDelegate,UITableViewDataSource, UITableViewDelegate>{}
@property(nonatomic,strong) NSString *userid;
@end@implementation WifiController- (void)viewDidLoad {[super viewDidLoad];[self initData];
}//添加头部
- (void)customContentView{UIColor *commonBlue = [self.commonUtil stringToColor:@"#333333"];[self.navigationController.navigationBar setBarTintColor:commonBlue];self.navigationController.navigationBar.tintColor = [UIColor whiteColor];self.navigationItem.title = @"WI-FI";//创建下啦刷新NSString *dropscan = NSLocalizedString(@"dropscan", nil);UIRefreshControl *rc = [[UIRefreshControl alloc] init];rc.attributedTitle = [[NSAttributedString alloc] initWithString:dropscan];[rc addTarget:self action:@selector(redreshTableView) forControlEvents:UIControlEventValueChanged];self.refreshControl = rc;
}-(void)initData{[self getWfModel];[self getDeviceView];self.WfView.frame = self.view.bounds;[self.view addSubview:self.WfView];self.tableView.delegate = self;self.tableView.dataSource = self;UIView *view = [[UIView alloc] init];self.tableView.tableFooterView =view;self.tableView.separatorStyle = NO;//隐藏分割线//_userid = [[CommonUserDefaults shared] getValue:USERID];//得到wifi数据//[self.wfModel getWifiData];
}/*程序加载的时候调用*/
- (void)viewDidAppear:(BOOL)animated{[super viewDidAppear:animated];if(_userid){[self.WfModel getAllDevice:@"1"];}else{[self.WfModel getAllDevice:@"1"];}if (self.refreshControl.refreshing) {//TODO: 已经在刷新数据了NSLog(@"12233");} else {NSLog(@"y is %f",self.tableView.contentOffset.y);if (self.tableView.contentOffset.y == -64.0) {[UIView animateWithDuration:0.25delay:0options:UIViewAnimationOptionBeginFromCurrentStateanimations:^(void){self.tableView.contentOffset = CGPointMake(0, -self.refreshControl.frame.size.height);} completion:^(BOOL finished){[self.refreshControl beginRefreshing];[self.refreshControl sendActionsForControlEvents:UIControlEventValueChanged];}];}}
}//读取刷新TableView
-(void)redreshTableView{if(self.refreshControl.refreshing){self.refreshControl.attributedTitle = [[NSAttributedString alloc] initWithString:@"Refresh"];if(_userid){[self.WfModel getAllDevice:@"1"];}else{[self.WfModel getAllDevice:@"1"];}[self.refreshControl endRefreshing];self.refreshControl.attributedTitle = [[NSAttributedString alloc] initWithString:@"Down Refresh"];//扫描//[self.tableView reloadData];//[self stopscan];}
}
-(WifiView *)getDeviceView{if(self.WfView==nil){self.WfView = [[WifiView alloc] init];self.WfView.mDeviceTb.delegate = (id)self;self.WfView.mDeviceTb.dataSource = (id)self;}return self.WfView;
}-(WifiModel*)getWfModel{if(self.WfModel==nil){self.WfModel = [[WifiModel alloc] init];self.WfModel.delegate = (id)self;}return self.WfModel;
}-(NSMutableArray*)dcList{if(!_dcList){_dcList = [NSMutableArray array];}return _dcList;
}
#pragma mark
-(void)WifiSuccess:(NSArray *_Nullable) result{// [self.WfView.mDeviceTb.mj_header endRefreshing];if(result.count>0){self.dcList = [NSMutableArray arrayWithArray:result];[self.WfView.mDeviceTb reloadData];NSLog(@"d%@wo wo shi result",result);// [self.WfView.mDeviceTb reloadData];}
}
-(void)WifiFail:(NSString *_Nullable) result{NSLog(@"d%@uowula",result);
}#pragma mark tableView
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{return self.dcList.count;
}-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{WifiCell *cell = [tableView dequeueReusableCellWithIdentifier:@CELLIDENTIFITER];if (cell == nil) {cell = [[WifiCell alloc] initWithStyle:UITableViewCellStyleDefaultreuseIdentifier:@CELLIDENTIFITER];}[cell setSelectionStyle:UITableViewCellSelectionStyleNone];cell.mMainVw.hidden = NO;if(self.dcList.count>0){if([indexPath row]<self.dcList.count){Device *device = [self.dcList objectAtIndex:indexPath.row];cell.mDeviceNameLb.text = device.devicename;cell.mDeviceAddreLb.text = device.address;if([device.isonline isEqualToString:@"1"]){[cell.mStatusIv setImage:[UIImage imageNamed:@"yes"]];}else{[cell.mStatusIv setImage:[UIImage imageNamed:@"tip"]];}}}
//    cell.mDeviceNameLb.text = @"datcva";
//    cell.mDeviceAddreLb.text = @"82:31:32:19:ab:39";return cell;
}
//定义列的高度
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{return 60;
}-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{}
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{return 1;
}//用完之后需要关闭掉
-(void)viewDidDisappear:(BOOL)animated{[super viewDidDisappear:animated];/*if ([self.deviceTimer isValid]) {[self.deviceTimer invalidate];}self.deviceTimer = nil;*/
}
@end

OK,本章节就讲述到此为止。利用Masonry+MVC+AFNetworking实现动态获取列表,这样更具清晰,代码阅读维护也方便,功能亲测是可以的,只要各位看官跟着我一步一步来,相信是没有问题的,代码都在以上,如需看demo,此处是链接:https://download.csdn.net/download/qq_37523448/11262582

若有不懂之处或不对之处,欢迎留言以及评论,一起努力解决项目需求,谢谢您的阅读,再见!~by