ios:TableView的用法

來源:互聯網
上載者:User

通過兩種方法來實現: 

一、通過動態數組NSMutableArray中的資料,來顯示資料

 

1.建立Empty Application項目,建立ViewController,HomeViewController,在AppDelegate.m中匯入該檔案,

並在方法- (BOOL)application:didFinishLaunchingWithOptions:中添加以下紅色標記的代碼

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{    self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];    // Override point for customization after application launch.    self.window.backgroundColor = [UIColor whiteColor];        HomeViewController *homeViewController = [[HomeViewController alloc] init];    self.window.rootViewController = homeViewController;    [homeViewController release];        [self.window makeKeyAndVisible];    return YES;

 

2.在 HomeViewController.xib上添加Table View控制項

將其Outlets的dataSource和delegate與File's Owner建立關聯,

 目的:(1) dataSource: 向HomeViewController添加UITableViewDataSource協議,從而可以在該類中使用相關的協議方法,在Table View中顯示資料。 

         (2) delegate :向HomeViewController添加UITableViewDelegate協議,從而可以在該類中使用相關的協議方法,響應使用者在Table View中的互動操作。

 

 在HomeViewController.h中添加協議

#import <UIKit/UIKit.h>@interface HomeViewController : UIViewController<UITableViewDelegate, UITableViewDataSource>{}@end

目的:都添加協議,有備無患。提高代碼編寫的效率和可靠性。

 

3. 在HomeViewController.m中編寫代碼

 

#import "HomeViewController.h"@interface HomeViewController ()@end@implementation HomeViewControllerNSMutableArray *listOfContacts;//聲明動態數組- (void)viewDidLoad{     listOfContacts = [[NSMutableArray alloc] init];//分配記憶體並初始化        [listOfContacts addObject:@"張三"];    [listOfContacts addObject:@"張1"];    [listOfContacts addObject:@"張2"];    [listOfContacts addObject:@"張3"];    [listOfContacts addObject:@"張4"];    [listOfContacts addObject:@"張5"];    [listOfContacts addObject:@"張6"];    [listOfContacts addObject:@"張7"];    [listOfContacts addObject:@"張8"];    [listOfContacts addObject:@"張9"];    [listOfContacts addObject:@"張11"];    [listOfContacts addObject:@"張12"];    [listOfContacts addObject:@"張13"];    [listOfContacts addObject:@"張14"];    [listOfContacts addObject:@"張15"];    [listOfContacts addObject:@"張16"];    [listOfContacts addObject:@"張17"];    [listOfContacts addObject:@"張18"];    [listOfContacts addObject:@"張19"];        [super viewDidLoad];}//使用UITableViewDataSource協議的tableView:cellForRowAtIndexPath:方法//該方法用來將資料填充進Table View的儲存格中/* 在Table View中每填充一個儲存格的資料就會觸發一次該事件。 注意:如果我們的資料一共有200項,並不代表會連續觸發200次這個事件,如果當前螢幕只能顯示10行資料的話,就只會觸發10次該事件,當使用者滾動該Table View而產生新的儲存格時,才會繼續觸發該事件。 */- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{        static NSString *CellIndentifier = @"Contact";        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIndentifier];    /*     dequeueReusableCellWithIdentifier方法,擷取UITableViewCell類型的對象,而且擷取的是一個已經在TableView中使用過並可以複用的對象。     想象一下:     如果數組中有1000個元素,我們為每一個元素都執行個體化一個UITableViewCell對象的話,系統就會記憶體溢出甚至崩潰。其實每個使用者在一個螢幕中能夠看到的儲存格數量也就十幾個,他們通過上下滾動螢幕的操作可以讓一些已顯示的儲存格消除,而這些儲存格對象系統就會保留下來以備我們需要顯示新儲存格時可以複用它們,從而達到了節省系統資源的目的。這個方法包含一個參數CellIdentifier, 它用於指明你需要哪個標識的可複用儲存格。在同一介面中如果有多個表格的情況時非常有用。     當然如果沒有擷取到可複用的儲存格時,我們就需要使用UITableViewCell的initWithStyle:reuseIdentifier:方法直接執行個體化一個儲存格。其中reuseIdentifier參數用於設定該表格的可複用標識。     */        if (cell == nil) {        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIndentifier] autorelease];            }        NSString *cellValue = [listOfContacts objectAtIndex:indexPath.row];    cell.textLabel.text = cellValue;    

    //示意標誌: Disclosure Indicator,Disclosure Button,Checkmark,預設為None

    //cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;

    //cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;    //cell.accessoryType = UITableViewCellAccessoryCheckmark;    cell.accessoryType = UITableViewCellAccessoryNone;        //儲存格添加圖片    UIImage *image = [UIImage imageNamed:@"avatar.png"];    cell.imageView.image = image;        return cell;}//使用UITableViewDataSource協議的tableView:numberOfRowsInSection:方法//該方法用來設定Table View中要顯示資料的行數- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{    return [listOfContacts count];}//添加標題和指令碼資訊- (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{

      return @"連絡人清單";

    }- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section{    return @"作者:what if";} 

 

 

 //UITableViewDelegate協議的方法,選擇表格中的項目- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{    NSString *contactSelected = [listOfContacts objectAtIndex:[indexPath row]];    NSString *msg = [[NSString alloc] initWithFormat:@"您選擇的連絡人:%@", contactSelected];    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"選擇連絡人" message:msg delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];    [alert show];    [alert release];    [contactSelected release];    [msg release];}  //UITableViewDelegate協議的方法,表格中的縮排- (NSInteger) tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath{    return [indexPath row] % 9;    }- (void)dealloc{

 

    [listOfContacts release];    [super dealloc];    }- (void)viewDidUnload{    [super viewDidUnload];}- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{    return (interfaceOrientation == UIInterfaceOrientationPortrait);}@end

 

二、通過plist檔案提供資料,來顯示資料,方便分組

 1.添加contacts.plist檔案

 2. 

HomeViewController.h中添加代碼

#import <UIKit/UIKit.h>@interface HomeViewController : UIViewController<UITableViewDelegate, UITableViewDataSource>{}@property (nonatomic, retain) NSDictionary *contactTitles;//儲存所有的連絡人資訊@property (nonatomic, retain) NSArray *groups;//所有分類名稱存入數組中

@end 

 

3. HomeViewController.m中添加代碼

#import "HomeViewController.h"@interface HomeViewController ()@end@implementation HomeViewController@synthesize contactTitles;@synthesize groups;- (void)viewDidLoad{       NSString *path = [[NSBundle mainBundle] pathForResource:@"contacts" ofType:@"plist"];//plist檔案路徑    NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:path];    self.contactTitles = dict;    [dict release];        NSArray *array = [[contactTitles allKeys] sortedArrayUsingSelector:@selector(compare:)];        self.groups = array;    [super viewDidLoad];}//使用UITableViewDataSource協議的tableView:cellForRowAtIndexPath:方法- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{        static NSString *CellIndentifier = @"Contact";        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIndentifier];        if (cell == nil) {        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIndentifier] autorelease];            }               NSString *group = [groups objectAtIndex:[indexPath section]];NSArray * contactSection = [contactTitles objectForKey:group];cell.textLabel.text = [contactSection objectAtIndex:[indexPath row]];        //儲存格添加圖片    UIImage *image = [UIImage imageNamed:@"avatar.png"];    cell.imageView.image = image;            return cell;}- (NSInteger) numberOfSectionsInTableView:(UITableView *)tableView{    return [groups count];}//使用UITableViewDataSource協議的tableView:numberOfRowsInSection:方法//該方法用來設定Table View中要顯示資料的行數- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{     NSString *group = [groups objectAtIndex:section];    NSArray *contactSection = [contactTitles objectForKey:group];        return [contactSection count];}//添加標題和指令碼資訊- (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{    NSString *group = [groups objectAtIndex:section];    return group;    }- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section{    return @"作者:what if";}

 

 

 /*//UITableViewDelegate協議的方法,選擇表格中的項目- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{    NSString *contactSelected = [listOfContacts objectAtIndex:[indexPath row]];    NSString *msg = [[NSString alloc] initWithFormat:@"您選擇的連絡人:%@", contactSelected];    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"選擇連絡人" message:msg delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];    [alert show];    [alert release];    [contactSelected release];    [msg release];} *//* //UITableViewDelegate協議的方法,表格中的縮排- (NSInteger) tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath{    return [indexPath row] % 9;    }*/

//索引功能 

- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView{    return groups;}//使用者點擊標誌後觸發的事件,只有DetailDisclosure Button才有該事件- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath{    //進入到該項目的詳細資料頁面

 

 

- (void)dealloc{        [contactTitles release];    [groups release];    [super dealloc];    }- (void)viewDidUnload{    [super viewDidUnload];}- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{    return (interfaceOrientation == UIInterfaceOrientationPortrait);}@end

 

4.在xib檔案中修改其Style為Grouped

 顯示效果:

 

 

 

 備忘:

修改儲存格的方法:

textLabel.font  使用UIFont設定儲存格標籤的字型

textLabel.lineBreakMode   使用UILineBreakMode指定儲存格標籤的文本如何換行

textLabel.text   將儲存格標籤的內容設定為一個NSString

textLabel.textAlignment   使用UITextAlignment設定儲存格標籤文本的對齊

textLabel.textColor    使用UIColor設定儲存格標籤文本的顏色

textLabel.selectedTextColor   使用UIColor設定選定文本的顏色

imageView.image   將儲存格的映像視圖設定為一個UIImage

imageView.selectedImage   將選定儲存格的內容設定為UIImage

 

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.