ios json

![屏幕快照 2018-11-23 上午12.24.08.png](https://upload-images.jianshu.io/upload_images/12846742-775057a4f60ee9c1.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

-(void)setModel:(Model*)model{

_model= model;

self.titleLab.text= model.title;

self.imgV1.image= [UIImageimageNamed:model.img1];

self.imgV2.image= [UIImageimageNamed:model.img2];

self.text1.text= model.text1;

self.text2.text= model.text2;

}

BaogViewController.m

import "BaogViewController.h"

import "BaogTableViewCell.h"

import "AFNetworking/AFNetworking/AFHTTPSessionManager.h"

import "YJSegmentedControl/YJSegmentedControl.h"

import "Model.h"

import "MJExtension/MJExtension.h"

@interface BaogViewController ()<UITableViewDelegate,UITableViewDataSource,YJSegmentedControlDelegate>

@property(nonatomic,strong)UITableView *tbv;

@property(nonatomic,strong)NSArray *arr;

@end

@implementationBaogViewController

  • (void)viewDidLoad {

    [super viewDidLoad];

    // Do any additional setup after loading the view.

[self loadData];

[self createTbv];



NSArray* btnDataSource =@[@"攻略",@"训练营",@"咨询"];



YJSegmentedControl * segment = [YJSegmentedControl segmentedControlFrame:CGRectMake(0, 44, self.view.bounds.size.width, 44) titleDataSource:btnDataSource backgroundColor:[UIColor whiteColor] titleColor:[UIColor blueColor] titleFont:[UIFont fontWithName:@".Helvetica Neue Interface" size:16.0f] selectColor:[UIColor orangeColor] buttonDownColor:[UIColor blueColor] Delegate:self];



self.navigationItem.titleView = segment;

}

-(void)createTbv{

_tbv = [[UITableView alloc]initWithFrame:[UIScreen mainScreen].bounds style:UITableViewStylePlain];



_tbv.dataSource = self;

_tbv.delegate=self;

[self.tbv registerNib:[UINib nibWithNibName:@"BaogTableViewCell" bundle:[NSBundle mainBundle]] forCellReuseIdentifier:@"id"];



[self.viewaddSubview:self.tbv];



self.tbv.rowHeight=170;

}

  • (void)segumentSelectionChange:(NSInteger)selection{

    if(selection ==0) {

      NSLog(@"新动态");
    
    
    
      self.tbv.hidden=NO;
    

    }else{

      NSLog(@"iOS教程");
    
      self.tbv.hidden=YES;
    

    }

}

-(NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section{

return_arr.count;

}

-(CGFloat)tableView:(UITableView*)tableView heightForHeaderInSection:(NSInteger)section{

return 150;

}

-(UIView)tableView:(UITableView)tableView viewForHeaderInSection:(NSInteger)section{

UIImageView *imgV = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 150)];



imgV.image= [UIImageimageNamed:@"1"];



returnimgV;

}

-(UITableViewCell)tableView:(UITableView)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath{

BaogTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"id" forIndexPath:indexPath];

if(!cell) {

    cell = [[BaogTableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"id"];

}



cell.model= [self.arrobjectAtIndex:indexPath.row];



returncell;

}

-(void)loadData{

AFHTTPSessionManager *manger = [AFHTTPSessionManager manager];

NSString *url = @"http://127.0.0.1/BingqiuJson.json";

[mangerGET:urlparameters:nilprogress:nilsuccess:^(NSURLSessionDataTask*_Nonnulltask,id  _NullableresponseObject) {



    self.arr= responseObject[@"data"];



    self.arr= [Modelmj_objectArrayWithKeyValuesArray:responseObject[@"data"]];



    NSLog(@"%@",responseObject);

    NSLog(@"-------------%@",self.arr);

    [self.tbvreloadData];

}failure:^(NSURLSessionDataTask*_Nullabletask,NSError*_Nonnullerror) {

}];

}

/*

pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation

  • (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {

    // Get the new view controller using [segue destinationViewController].

    // Pass the selected object to the new view controller.

}

*/

@end

WoViewController.m

()<UITableViewDelegate,UITableViewDataSource>

@property(nonatomic,strong)UITableView *tbv;

@property(nonatomic,strong)UIImageView *headerV;

@property(nonatomic,strong) UIImagePickerController *imagePicker;

@end

@implementationWoViewController

  • (void)viewDidLoad {

    [super viewDidLoad];

    // Do any additional setup after loading the view.

[self createTbv];



self.title=@"学员资料";



self.navigationItem.rightBarButtonItem= [[UIBarButtonItemalloc]initWithTitle:@"切换学院"style:UIBarButtonItemStylePlaintarget:selfaction:@selector(qiehuan)];

}

-(void)qiehuan{

}

-(void)createTbv{

_tbv = [[UITableView alloc]initWithFrame:[UIScreen mainScreen].bounds style:UITableViewStylePlain];



_tbv.dataSource = self;

_tbv.delegate=self;



[self.viewaddSubview:self.tbv];

}

-(NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section{

return 7;

}

-(CGFloat)tableView:(UITableView)tableView heightForRowAtIndexPath:(NSIndexPath)indexPath{

if(indexPath.row==0) {

    return100;

}

return 50;

}

-(UITableViewCell)tableView:(UITableView)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath{

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];

if(!cell) {

    cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"cell"];

}



NSArray *arr1 = @[@"更换头像",@"姓名",@"性别",@"生日",@"身高",@"体重",@"基础心率"];

NSArray *arr2 = @[@"",@"张小红",@"女",@"1994",@"150",@"300",@"70"];

if(indexPath.row==0) {

    cell.textLabel.text=@"更换头像";

    _headerV  = [[UIImageViewalloc]initWithFrame:CGRectMake(self.view.frame.size.width-100,10,80,80)];

    [_headerV setBackgroundColor:[UIColor yellowColor]];

    _headerV.layer.masksToBounds = YES;

    _headerV.layer.cornerRadius = 40;

    [celladdSubview:_headerV];

}else{

    cell.textLabel.text= arr1[indexPath.row];

    cell.detailTextLabel.text= arr2[indexPath.row];

}



returncell;

}

pragma mark -头像UIImageview的点击事件-

  • (void)headClick {

    //自定义消息框

    UIActionSheet *sheet = [[UIActionSheet alloc] initWithTitle:@"选择" delegate:self cancelButtonTitle:nil destructiveButtonTitle:@"取消" otherButtonTitles:@"拍照",@"从相册选择", nil];

    sheet.tag=2550;

    //显示消息框

    [sheetshowInView:self.view];

}

pragma mark -消息框代理实现-

  • (void)actionSheet:(UIActionSheet*)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {

    if(actionSheet.tag==2550) {

      NSUIntegersourceType =0;
    
      // 判断系统是否支持相机
    
      _imagePicker = [[UIImagePickerController alloc] init];
    
    
    
      if([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) {
    
          _imagePicker.delegate=self;//设置代理
    
          _imagePicker.allowsEditing=YES;
    
          _imagePicker.sourceType= sourceType;//图片来源
    
          if(buttonIndex ==0) {
    
              return;
    
          }elseif(buttonIndex ==1) {
    
              //拍照
    
              sourceType =UIImagePickerControllerSourceTypeCamera;
    
              _imagePicker.sourceType= sourceType;
    
              [self presentViewController:_imagePicker animated:YES completion:nil];
    
          }elseif(buttonIndex ==2){
    
              //相册
    
              sourceType =UIImagePickerControllerSourceTypePhotoLibrary;
    
              _imagePicker.sourceType= sourceType;
    
              [self presentViewController:_imagePicker animated:YES completion:nil];
    
    
    
          }
    
      }else{
    
          if(buttonIndex ==0) {
    
              return;
    
          }
    
          sourceType =UIImagePickerControllerSourceTypePhotoLibrary;
    
          _imagePicker.sourceType= sourceType;
    
          [self presentViewController:_imagePicker animated:YES completion:nil];
    
          //            return;
    
      }
    
    
    
    
    
      _headerV.layer.borderWidth = 1;
    
      _headerV.layer.borderColor = [UIColor lightGrayColor].CGColor;
    
      _headerV.userInteractionEnabled = YES;
    
      [_headerV addGestureRecognizer:[[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(headClick)]];
    

    }

}

pragma mark -实现图片选择器代理-(上传图片的网络请求也是在这个方法里面进行,这里我不再介绍具体怎么上传图片)

  • (void)imagePickerController:(UIImagePickerController)picker didFinishPickingMediaWithInfo:(NSDictionary)info {

    [pickerdismissViewControllerAnimated:YES completion:^{}];

    UIImage *image = [info objectForKey:UIImagePickerControllerOriginalImage]; //通过key值获取到图片

    _headerV.image= image; //给UIimageView赋值已经选择的相片

//上传图片到服务器--在这里进行图片上传的网络请求,这里不再介绍

//......

}

/*

pragma mark - Navigation

// In a storyboard-based application, you will often want to do a little preparation before navigation

  • (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {

    // Get the new view controller using [segue destinationViewController].

    // Pass the selected object to the new view controller.

}

*/

@end

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,658评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,482评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,213评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,395评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,487评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,523评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,525评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,300评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,753评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,048评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,223评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,905评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,541评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,168评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,417评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,094评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,088评论 2 352

推荐阅读更多精彩内容