码迷,mamicode.com
首页 > 移动开发 > 详细

ios仿收货地址管理

时间:2017-09-10 13:28:08      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:oid   nonatomic   state   bsp   ==   tableview   title   source   nta   

最近公司项目增加了一个需求,然后要有收货地址的管理,有单选框的设置,我昨晚也是写了很晚才写出来的,然偶今天就分享一下吧,同时也是我自己积累的过程,当然了,我今天给的是一个demo的例子,我不可能把自己的项目搬进来。下面就不说废话了,直接上代码。

我现在写的是一个简单的demo,至于后面可能会加上难的吧,然后我也会更新的。

#import "ViewController.h"

 

#define rowCount        5

 

@interface ViewController ()<UITableViewDelegate,UITableViewDataSource>

 

@property(nonatomic,strong)NSMutableArray *allButtonArray;

@end

 

@implementation ViewController

 

- (void)viewDidLoad {

    [super viewDidLoad];

    self.allButtonArray = [[NSMutableArray alloc] init];

    

    UITableView *tabView = [[UITableView alloc] initWithFrame:self.view.frame style:UITableViewStylePlain];

    tabView.delegate =self;

    tabView.dataSource =self;

    

    [self.view addSubview:tabView];

    

}

 

 

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView

{

    return 1;

}

 

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

{

    return rowCount;

    

}

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

{

    static NSString *identifier = @"identifier";

    

    UITableViewCell *cell = (UITableViewCell*)[view  dequeueReusableCellWithIdentifier:identifier];

    

    if (cell==nil) {

        

        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];

        cell.selectionStyle = UITableViewCellSelectionStyleNone;

        cell.textLabel.text = @"aaa";

        

        UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];

        button.tag = 1000+indexPath.row;

        [button setImage:[UIImage imageNamed:@"unselect"] forState:UIControlStateNormal];

//        [button setTitle:@"title" forState:UIControlStateNormal];

        button.frame = CGRectMake(0, 0, 200, 60);

        [button addTarget:self action:@selector(buttonClick:) forControlEvents:UIControlEventTouchUpInside];

        

        [cell addSubview:button];

        

        [_allButtonArray addObject:button];

    }

    

    return cell;

}

 

- (void)buttonClick:(UIButton *)button

{

    NSLog(@"click-----------");

    [button setImage:[UIImage imageNamed:@"selected"] forState:UIControlStateNormal];

//    [button setTitle:@"afterClick" forState:UIControlStateNormal];

    

//    for ( int i=0; i<rowCount; i++) {

//        NSInteger tag = 1000+i;

//        if (tag!=button.tag) {

//            UIButton *unselectedbutton = (UIButton *)[self.view viewWithTag:tag];

//            [unselectedbutton setImage:[UIImage imageNamed:@"unselect"] forState:UIControlStateNormal];

//        }

//    }

    

    for (int i=0; i<[_allButtonArray count]; i++) {

        UIButton *cellButton = (UIButton *)_allButtonArray[i];

        if (cellButton!=button) {

            [cellButton setImage:[UIImage imageNamed:@"unselect"] forState:UIControlStateNormal];

        }

    }

   

}

 

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

{

    NSLog(@"...........");

 

}

 

- (void)didReceiveMemoryWarning {

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}

 

 

@end

 

ios仿收货地址管理

标签:oid   nonatomic   state   bsp   ==   tableview   title   source   nta   

原文地址:http://www.cnblogs.com/huiyi-520/p/7500673.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!