久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

TableView的詳細設置

 昵稱20917807 2014-12-11
// 頭文件

//

//  GroupTableViewController.h

//  UITableViewGroup

//

//  Created by LiZe on 13-9-5.

//  Copyright (c) 2013 BlackCode. All rights reserved.

//

#import

#import "DetailViewController.h"

@interface GroupTableViewController : UIViewController<</span>UITableViewDelegate, UITableViewDataSource>

@property (nonatomic, retain) UITableView *groupTableView;

@end





 //

//  GroupTableViewController.m

//  UITableViewGroup

//

//  Created by LiZe on 13-9-5.

//  Copyright (c) 2013 BlackCode. All rights reserved.

//

#import "GroupTableViewController.h"

@interface GroupTableViewController ()


@end


@implementation GroupTableViewController


- (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.

    // 設置標題

    self.title = @"UITableView Group 的使用";

    

    // 初始化groupTableView

    self.groupTableView = [[[UITableView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height) style:UITableViewStyleGrouped] autorelease];

    // 設置表示圖的數據源委托

    _groupTableView.dataSource = self;

    // 設置表示圖的委托

    _groupTableView.delegate = self;

    // 設置groupTableView的背景顏色

    UIView *groupTableViewBGView = [[UIView alloc] initWithFrame:self.view.frame];

    groupTableViewBGView.backgroundColor = [UIColor brownColor];

    _groupTableView.backgroundView = groupTableViewBGView;

    [groupTableViewBGView release], groupTableViewBGView = nil;

    

    // 添加到當前視圖中

    [self.view addSubview:_groupTableView];

    

    

    // 在導航欄上添加一個編輯按鈕放在右上角

    UIBarButtonItem *editButton = [[UIBarButtonItem alloc] initWithTitle:@"編輯" style:UIBarButtonItemStyleBordered target:self action:@selector(toggleButton:)];

    

    self.navigationItem.rightBarButtonItem = editButton;

    [editButton release], editButton = nil;

    

    // 在導航欄上添加一個提示按鈕放在左上角

    UIBarButtonItem *hintLeftButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemBookmarks target:self action:nil];

    self.navigationItem.leftBarButtonItem = hintLeftButton;

    [hintLeftButton release], hintLeftButton = nil;

}


- (void)didReceiveMemoryWarning

{

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}



#pragma mark - 實現---編輯按鈕的toggleButton:方法

- (void)toggleButton:(UIBarButtonItem *) sender {

    if (_groupTableView.isEditing == YES) {

        [_groupTableView setEditing:NO animated:YES];

        sender.title = @"編輯";

    } else {

        [_groupTableView setEditing:YES animated:YES];

        sender.title = @"完成";

    }

}


#pragma mark - 重寫----設置有groupTableView有幾個分區(qū)

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {

    return 4; // 返回值是多少既有幾個分區(qū)

}


#pragma mark - 重寫----設置每個分區(qū)有幾個單元格

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

    // 分別設置每個分組上面顯示的單元格個數

    switch (section) {

        case 0:

            return 3;

            break;

        case 1:

            return 2;

            break;

        case 2:

            return 5;

            break;

        case 3:

            return 10;

            break;

        default:

            break;

    }

    return 10;

}


#pragma mark - 重寫----設置每個分組單元格中顯示的內容

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

    // 設置一個標示符

    static NSString *cell_id = @"cell_id";

    //

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cell_id];

    // 判斷cell是否存在

    if (!cell) {

        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cell_id] autorelease];

        cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;

    }

    // 分別給每個分區(qū)的單元格設置顯示的內容

   

    cell.textLabel.text = [NSString stringWithFormat:@"section = %d, row = %d", indexPath.section, indexPath.row];

    return cell;

}


#pragma mark - 重寫----設置哪個單元格被選中的方法

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

    UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"單元格" message:[NSString stringWithFormat:@"section = %d, row = %d", indexPath.section, indexPath.row] delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"確認", nil];

    [alertView show];

    [alertView release], alertView = nil;

}


#pragma mark - 重寫----設置每個單元格上面的按鈕的點擊方法

- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath {

    // 實例化DetailViewController

    DetailViewController *detailVC = [[DetailViewController alloc] init];

    // 添加出一個導航欄

    UINavigationController *navigtion = [[UINavigationController alloc] initWithRootViewController:detailVC];

    // 設置導航欄顏色

    navigtion.navigationBar.tintColor = [UIColor purpleColor];

    // 設置模態(tài)視圖彈出的動畫效果

    navigtion.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;

    // 直接使用self呈現一個試圖

    [self presentViewController:navigtion animated:YES completion:nil];

    // 釋放內存

    [detailVC release], detailVC = nil;

}


#pragma mark - 重寫----設置標題和標注的高度

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

    return 30.0f;

}

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

    return 20.0f;

}


#pragma mark - 重寫----設置標題和標注

 



#pragma mark - 重寫----設置自定義的標題和標注

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

    UILabel *headerLabel = [[[UILabel alloc] initWithFrame:CGRectZero] autorelease];;

    headerLabel.font = [UIFont boldSystemFontOfSize:18.0f];

    headerLabel.backgroundColor = [UIColor clearColor];

    headerLabel.text = @"  我是標題";

    headerLabel.textColor = [UIColor blackColor];

    return headerLabel;

    

}

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {

    UILabel *footerLabel = [[[UILabel alloc] initWithFrame:CGRectZero] autorelease];;

    footerLabel.font = [UIFont boldSystemFontOfSize:15.0f];

    footerLabel.backgroundColor = [UIColor clearColor];

    footerLabel.textAlignment = NSTextAlignmentCenter;

    footerLabel.text = @"(*^__^*) 嘻嘻……";

    footerLabel.textColor = [UIColor whiteColor];

    return footerLabel;

}



#pragma mark - 重寫----設置單元格可以排序

- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {

    return YES;

}


#pragma mark - 重寫----設置排序執(zhí)行的方法

- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)sourceIndexPath toIndexPath:(NSIndexPath *)destinationIndexPath {

    

}


#pragma mark - 重寫----設置單元格隔行換顏色

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {

    if (indexPath.row % 2 == 0) {

        cell.backgroundColor = [UIColor orangeColor];

    } else {

        cell.backgroundColor = [UIColor yellowColor];

    }

}


#pragma mark - 重寫----設置groupTableView可以編輯

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {

    return YES;

}


#pragma mark - 重寫----設置編輯狀態(tài)下左面顯示的是加號,、減號、還是空白

- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {

    return UITableViewCellEditingStyleDelete;

}


#pragma mark - 重寫----根據編輯的狀態(tài)來執(zhí)行什么操作

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {

    // 根據編輯狀態(tài)進行相應的操作

    if (editingStyle == UITableViewCellEditingStyleInsert) { // 進行插入的操作

        

        

    } else if (editingStyle == UITableViewCellEditingStyleDelete) { // 進行刪除的操作

       

    }

}




#pragma mark - 重寫----dealloc方法

- (void)dealloc {

    [_groupTableView release], _groupTableView = nil;

    

    

    [super dealloc];

}


@end

    本站是提供個人知識管理的網絡存儲空間,所有內容均由用戶發(fā)布,,不代表本站觀點。請注意甄別內容中的聯(lián)系方式,、誘導購買等信息,,謹防詐騙。如發(fā)現有害或侵權內容,,請點擊一鍵舉報,。
    轉藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多