您好,登錄后才能下訂單哦!
(2013-01-22 16:56:20)
標簽: uitableviewtableview的使用it | 分類: UI攻略 |
在開發iphone的應用時基本上都要用到UITableView,這里講解一下UITableView的使用方法及代理的調用情況
- (void)viewDidLoad
{
[super viewDidLoad];
//初始化數據
NSArray *array1_=@[@"張鐵林",@"張國立",@"張國榮",@"張藝謀",@"張惠妹"];
NSArray *array2_=@[@"李小龍",@"李小路"];
NSArray *array3_=@[@"王剛"];
self.myDic=@{@"老張家":array1_, @"老李家":array2_, @"老王家":array3_};
UITableView *myTableView_=[[UITableView alloc] initWithFrame:CGRectMake(0, 0,320, 460) style:UITableViewStylePlain];
myTableView_.delegate=self;
myTableView_.dataSource=self;
//改變換行線顏色lyttzx.com
myTableView_.separatorColor = [UIColor blueColor];
//設定Header的高度,
myTableView_.sectionHeaderHeight=50;
//設定footer的高度,
myTableView_.sectionFooterHeight=100;
//設定行高
myTableView_.rowHeight=100;
//設定cell分行線的樣式,默認為UITableViewCellSeparatorStyleSingleLine
[myTableView_ setSeparatorStyle:UITableViewCellSeparatorStyleSingleLine];
//設定cell分行線顏色
[myTableView_ setSeparatorColor:[UIColor redColor]];
//編輯tableView
myTableView_.editing=NO;
[self.view addSubview:myTableView_];
//跳到指的row or section
[myTableView_ scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:2inSection:2]
atScrollPosition:UITableViewScrollPositionBottom animated:NO];
}
//指定有多少個分區(Section),默認為1
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return [[self.myDic allKeys] count];
}
//每個section底部標題高度(實現這個代理方法后前面 sectionHeaderHeight 設定的高度無效)
-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
return 20;
}
//每個section頭部標題高度(實現這個代理方法后前面 sectionFooterHeight 設定的高度無效)
-(CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{
return 20;
}
//每個section頭部的標題-Header
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
return [[self.myDic allKeys] objectAtIndex:section];
}
//每個section底部的標題-Footer
- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section{
return nil;
}
//用以定制自定義的section頭部視圖-Header
-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
return nil;
}
//用以定制自定義的section底部視圖-Footer
-(UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section{
UIImageView *p_w_picpathView_=[[UIImageView alloc]initWithFrame:CGRectMake(0, 0,320, 20)];
p_w_picpathView_.p_w_picpath=[UIImage p_w_picpathNamed:@"1000.png"];
return [p_w_picpathView_ autorelease];
}
//指定每個分區中有多少行,默認為1
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return [[self.myDic objectForKey:[[self.myDic allKeys]objectAtIndex:section]]count];
}
//改變行的高度(實現主個代理方法后 rowHeight 設定的高度無效)
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
return 100;
}
//繪制Cell
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *SimpleTableIdentifier = @"SimpleTableIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:
SimpleTableIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
reuseIdentifier: SimpleTableIdentifier] autorelease];
//設定附加視圖
[cell setAccessoryType:UITableViewCellAccessoryDetailDisclosureButton];
// UITableViewCellAccessoryNone, // 沒有標示
// UITableViewCellAccessoryDisclosureIndicator, // 下一層標示
// UITableViewCellAccessoryDetailDisclosureButton, // 詳情button
// UITableViewCellAccessoryCheckmark // 勾選標記
//設定選中cell時的cell的背影顏色
cell.selectionStyle=UITableViewCellSelectionStyleBlue; //選中時藍色效果
// cell.selectionStyle=UITableViewCellSelectionStyleNone; //選中時沒有顏色效果
// cell.selectionStyle=UITableViewCellSelectionStyleGray; //選中時灰色效果
//
// //自定義選中cell時的背景顏色
// UIView *selectedView = [[UIView alloc] initWithFrame:cell.contentView.frame];
// selectedView.backgroundColor = [UIColor orangeColor];
// cell.selectedBackgroundView = selectedView;
// [selectedView release];
// cell.selectionStyle=UITableViewCellAccessoryNone; //行不能被選中
}
//這是設置沒選中之前的背景顏色
cell.contentView.backgroundColor = [UIColor clearColor];
cell.p_w_picpathView.p_w_picpath=[UIImage p_w_picpathNamed:@"1001.jpg"];//未選cell時的圖片
cell.p_w_picpathView.highlightedImage=[UIImage p_w_picpathNamed:@"1002.jpg"];//選中cell后的圖片
cell.textLabel.text=[[self.myDic objectForKey:[[self.myDicallKeys]objectAtIndex:indexPath.section]]objectAtIndex:indexPath.row];
return cell;
}
//行縮進
-(NSInteger)tableView:(UITableView *)tableView indentationLevelForRowAtIndexPath:(NSIndexPath *)indexPath{
NSUInteger row = [indexPath row];
return row;
}
//選中Cell響應事件
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath*)indexPath{
[tableView deselectRowAtIndexPath:indexPath animated:YES];//選中后的反顯顏色即刻消失
//得到當前選中的cell
UITableViewCell *cell=[tableView cellForRowAtIndexPath:indexPath];
NSLog(@"cell=%@",cell);
}
//行將顯示的時候調用,預加載行
-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"將要顯示的行是\n cell=%@ \n indexpath=%@",cell,indexPath);
}
//選中之前執行,判斷選中的行(阻止選中第一行)
-(NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSUInteger row = [indexPath row];
if (row == 0)
return nil;
return indexPath;
}
//編輯狀態,點擊刪除時調用
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle
forRowAtIndexPath:(NSIndexPath *)indexPath
{
}
//cell右邊按鈕格式為UITableViewCellAccessoryDetailDisclosureButton時,點擊按扭時調用的方法
-(void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath{
NSLog(@"當前點擊的詳情button \n indexpath=%@",indexPath);
}
//右側添加一個索引表
- (NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView{
return [self.myDic allKeys];
}
//劃動cell是否出現del按鈕
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath*)indexPath {
return YES;
}
//設定橫向滑動時是否出現刪除按扭,(阻止第一行出現)
-(UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath
{
if (indexPath.row==0) {
return UITableViewCellEditingStyleNone;
}
else{
return UITableViewCellEditingStyleDelete;
}
return UITableViewCellEditingStyleDelete;
}
//自定義劃動時delete按鈕內容
- (NSString *)tableView:(UITableView *)tableView
titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath{
return @"刪除這行";
}
//開始移動row時執行
-(void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath*)sourceIndexPath toIndexPath:(NSIndexPath*)destinationIndexPath
{
NSLog(@"sourceIndexPath=%@",sourceIndexPath);
NSLog(@"sourceIndexPath=%@",destinationIndexPath);
}
//滑動可以編輯時執行
-(void)tableView:(UITableView *)tableView willBeginEditingRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"willBeginEditingRowAtIndexPath");
}
//將取消選中時執行, 也就是上次先中的行
-(NSIndexPath *)tableView:(UITableView *)tableView willDeselectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"上次選中的行是 \n indexpath=%@",indexPath);
return indexPath;
}
//讓行可以移動
-(BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath*)indexPath
{
return NO;
}
//移動row時執行
-(NSIndexPath *)tableView:(UITableView *)tableView targetIndexPathForMoveFromRowAtIndexPath:(NSIndexPath *)sourceIndexPath toProposedIndexPath:(NSIndexPath*)proposedDestinationIndexPath
{
NSLog(@"targetIndexPathForMoveFromRowAtIndexPath");
//用于限制只在當前section下面才可以移動
if(sourceIndexPath.section != proposedDestinationIndexPath.section){
return sourceIndexPath;
}
return proposedDestinationIndexPath;
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。