control

作者: afjksbgwf | 来源:发表于2018-07-29 21:02 被阅读0次

- (void)viewDidLoad {

    [selfuidata];

    dataSource  = [[NSMutableArray alloc]init];

    for(NSUIntegeri =0; i<20; i++) {

        [dataSource addObject:[NSString stringWithFormat:@"%ld",i]];

    }

    self.view.backgroundColor = [UIColor blackColor];

    [super viewDidLoad];

    [self initTable];

}

-(void)initTable{

    nearbyTable = [[UITableView alloc]initWithFrame:CGRectMake(0, 45, self.view.frame.size.width, self.view.frame.size.height-64) style:UITableViewStylePlain];

    nearbyTable.delegate = self;

    nearbyTable.dataSource = self;

    nearbyTable.rowHeight=80;

    [self.view addSubview:nearbyTable];

    //nearbyTable.tableFooterView = [UIView new];

}

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

    returntabarr.count;

}

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

    staticNSString*identifer =@"cell";

    UITableViewCell *cell = [nearbyTable dequeueReusableCellWithIdentifier:identifer];

    if(cell==nil) {

        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:identifer];

    }

    Hqxw*one =tabarr[indexPath.row];

    cell.textLabel.text=one.title;

   cell.detailTextLabel.text =one.releaseDate;

    //[cell.imageView sd_setImageWithURL:[NSURL URLWithString:one.imageUrl] placeholderImage:[UIImage imageNamed:@""]];

    //网址字符串

    [cell.imageViewsd_setImageWithURL:[NSURLURLWithString:one.imageUrl]placeholderImage:[UIImageimageNamed:@"03.png"]completed:^(UIImage*image,NSError*error,SDImageCacheTypecacheType,NSURL*imageURL) {

        CGSizeitemSize =CGSizeMake(60,50);

        UIGraphicsBeginImageContextWithOptions(itemSize, NO, 0.0);

        CGRectimageRect =CGRectMake(0,0,60,50);

        [imagedrawInRect:imageRect];

        cell.imageView.image = UIGraphicsGetImageFromCurrentImageContext();

        UIGraphicsEndImageContext();

    }];

    returncell;

}

- (void)didReceiveMemoryWarning {

    [super didReceiveMemoryWarning];

}

-(void)uidata{

    [[[NetworkDataalloc]init]GET:STUDENT_URLparams:nilcompletion:^(iddata,BOOLsucess) {

        NSMutableArray* arr = [dataobjectForKey:@"data"];

        tabarr=[[NSMutableArrayalloc]init];

        for(NSDictionary*dicinarr) {

            Hqxw*one =[[Hqxwalloc]init];

            one.title= [dicobjectForKey:@"title"];

            one.imageUrl= [dicobjectForKey:@"imageUrl"];

            one.releaseDate= [dicobjectForKey:@"releaseDate"];

            [tabarraddObject:one];

        }

        [nearbyTablereloadData];

    }];

}

相关文章

  • 2022-11-01 Release The Past

    “To control your life, control your mind. To control your...

  • control

    我要控制我自己,不然这世界将进入地狱

  • control

    //屏幕宽度的宏 #define SCR_W [UIScreen mainScreen].bounds.size....

  • control

    - (void)viewDidLoad { [selfuidata]; dataSource = [[NS...

  • Control

    我察觉到执着的来源是这样:在任何一个通道上倾泻过多的能量。 这让我明了长久以来自己对爱情和命运的执着。它们让我伤痕...

  • control

    1.生成木马软件 msfvenom -p windows/meterpreter/reverse_tcp LHOS...

  • CONTROL

    是不是不该再往前随心而走再走 我怕我的理智与意念都会脱手 我怕一个人走两个人的距离 线不够拉扯我怕你往别的方向出发...

  • In Control

    原创 (简书名:天行鹤)|007-12372|7月21日|第6篇|心情随笔 本文960字,大概需要阅读2分钟 I ...

  • Control

    今天看了篇文章说富豪为什么那么热爱工作? 比尔·盖茨今年64岁,在1995年,他40岁的时候就成为了世界首富。目前...

  • control

    control是openlayer中的控件类 他们不会随着地图的移动而移动,一直处于一个固定的位置。 在实现上,并...

网友评论

      本文标题:control

      本文链接:https://www.haomeiwen.com/subject/ecutvftx.html