你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> IOS開發(24)之單元格附屬視圖和縮進

IOS開發(24)之單元格附屬視圖和縮進

編輯:IOS開發綜合

1 前言
如果我們對IOS SDK提供我們的附屬視圖不滿意的話,我們可以自己自定義附屬視圖,還可以對其進行縮進排版。

2 代碼實例
ZYUITableViewController.h:

 

[plain]
#import <UIKit/UIKit.h> 
 
@interface ZYUITableViewController : UIViewController<UITableViewDelegate,UITableViewDataSource>//添加代理 
 
@property(nonatomic,strong) UITableView *myTableView; 
 
@end 

#import <UIKit/UIKit.h>

@interface ZYUITableViewController : UIViewController<UITableViewDelegate,UITableViewDataSource>//添加代理

@property(nonatomic,strong) UITableView *myTableView;

@end
ZYUITableViewController.m:

 

[plain] view plaincopyprint?@synthesize myTableView; 
 
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil 

    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; 
    if (self) { 
        // Custom initialization 
    } 
    return self; 

 
- (void)viewDidLoad 

    [super viewDidLoad]; 
    // Do any additional setup after loading the view, typically from a nib. 
    self.view.backgroundColor = [UIColor whiteColor]; 
    myTableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];//設置列表樣式為簡單的樣式 還有一個樣式為UITableViewStyleGrouped為分組模式   UITableViewStylePlain為普通的樣式 
    self.myTableView.delegate = self;//設置代理為自身 
    myTableView.dataSource = self;//設置數據源為自身 
    self.myTableView.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight;//確保TablView能夠正確的調整大小 
    [self.view addSubview:myTableView]; 
     

//設置每行的高度 
-(CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{ 
    CGFloat result = 20.0f; 
    if ([tableView isEqual:self.myTableView]) { 
        //        result = 40.0f; 
        result = 80.0f; 
    } 
    return result; 

////允許數據源告知必須加載到Table View中的表的Section數。 
//-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{ 
//    NSInteger result = 0; 
//    if([tableView isEqual:myTableView]){ 
//        result = 3;//一共三個section 
//    } 
//    return result; 
//} 
//默認1個Section 
//設置呈現多少行 
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{ 
    return 10; 

//每行像是的數據 
-(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ 
    UITableViewCell *result = nil; 
    if ([tableView isEqual:myTableView]) { 
        static NSString *tableViewCellIdentifier = @"MyCells";//設置Cell標識 
        result = [tableView dequeueReusableCellWithIdentifier:tableViewCellIdentifier];//通過標示符返回一個可重用的表視圖單元格對象 
        if (result == nil) { 
            result = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:tableViewCellIdentifier];//初始化一個表格單元格樣式和重用的標識符,並將它返回給調用者。 
        } 
        //indexPath.section 表示section的索引 indexPath.row表示行數的索引 
        result.textLabel.text = [NSString stringWithFormat:@"Cell %ld",(long)indexPath.row]; 
        UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];//初始化按鈕 
        button.frame = CGRectMake(0.0f,0.0f,150.0f,25.0f);//設置大小 
        [button setTitle:[NSString stringWithFormat:@"Expand %ld",(long)indexPath.row] forState:UIControlStateNormal];//設置按鈕標題和常態樣式 
        [button addTarget:self action:@selector(performExpand:) forControlEvents:UIControlEventTouchUpInside];//添加點擊事件 
        result.accessoryView = button; 
        result.indentationLevel = indexPath.row;//縮進等級 
        result.indentationWidth = 10.0f;//縮進寬度 
         
    } 
    return result; 

 
-(void)performExpand:(UIButton *)param{ 
    NSLog(@"U pressed %@",param.titleLabel.text);//獲得按鈕標題 

 
//點擊某一行時候觸發的事件 
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ 
    if ([tableView isEqual:myTableView]) { 
        NSLog(@"%@",[NSString stringWithFormat:@"Cell %ld is selected",(long)indexPath.row]); 
    } 

//單擊右側按鈕時候觸發的事件 
-(void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath{ 
    UITableViewCell *owenCell = [tableView cellForRowAtIndexPath:indexPath]; 
    NSLog(@"Cell Title = %@",owenCell.textLabel.text);//獲得textLabel的值 

@synthesize myTableView;

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
 // Do any additional setup after loading the view, typically from a nib.
    self.view.backgroundColor = [UIColor whiteColor];
    myTableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];//設置列表樣式為簡單的樣式 還有一個樣式為UITableViewStyleGrouped為分組模式   UITableViewStylePlain為普通的樣式
    self.myTableView.delegate = self;//設置代理為自身
    myTableView.dataSource = self;//設置數據源為自身
    self.myTableView.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight;//確保TablView能夠正確的調整大小
    [self.view addSubview:myTableView];
   
}
//設置每行的高度
-(CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    CGFloat result = 20.0f;
    if ([tableView isEqual:self.myTableView]) {
        //        result = 40.0f;
        result = 80.0f;
    }
    return result;
}
////允許數據源告知必須加載到Table View中的表的Section數。
//-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
//    NSInteger result = 0;
//    if([tableView isEqual:myTableView]){
//        result = 3;//一共三個section
//    }
//    return result;
//}
//默認1個Section
//設置呈現多少行
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return 10;
}
//每行像是的數據
-(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    UITableViewCell *result = nil;
    if ([tableView isEqual:myTableView]) {
        static NSString *tableViewCellIdentifier = @"MyCells";//設置Cell標識
        result = [tableView dequeueReusableCellWithIdentifier:tableViewCellIdentifier];//通過標示符返回一個可重用的表視圖單元格對象
        if (result == nil) {
            result = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:tableViewCellIdentifier];//初始化一個表格單元格樣式和重用的標識符,並將它返回給調用者。
        }
        //indexPath.section 表示section的索引 indexPath.row表示行數的索引
        result.textLabel.text = [NSString stringWithFormat:@"Cell %ld",(long)indexPath.row];
        UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];//初始化按鈕
        button.frame = CGRectMake(0.0f,0.0f,150.0f,25.0f);//設置大小
        [button setTitle:[NSString stringWithFormat:@"Expand %ld",(long)indexPath.row] forState:UIControlStateNormal];//設置按鈕標題和常態樣式
        [button addTarget:self action:@selector(performExpand:) forControlEvents:UIControlEventTouchUpInside];//添加點擊事件
        result.accessoryView = button;
        result.indentationLevel = indexPath.row;//縮進等級
        result.indentationWidth = 10.0f;//縮進寬度
       
    }
    return result;
}

-(void)performExpand:(UIButton *)param{
    NSLog(@"U pressed %@",param.titleLabel.text);//獲得按鈕標題
}

//點擊某一行時候觸發的事件
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    if ([tableView isEqual:myTableView]) {
        NSLog(@"%@",[NSString stringWithFormat:@"Cell %ld is selected",(long)indexPath.row]);
    }
}
//單擊右側按鈕時候觸發的事件
-(void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath{
    UITableViewCell *owenCell = [tableView cellForRowAtIndexPath:indexPath];
    NSLog(@"Cell Title = %@",owenCell.textLabel.text);//獲得textLabel的值
}
運行結果:

 \
 


點擊第一行控制台輸出:


2013-04-28 10:56:21.187 UITableViewTest1[877:c07] Cell 0 is selected

點擊第二行按鈕控制台輸出:


2013-04-28 10:56:23.957 UITableViewTest1[877:c07] U pressed Expand 1

 

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved