0

我是 iPhone 开发的新手。我已经创建了一个UITableView. 我已经把所有东西都连接起来了,包括delegateand datasourceUITableViewCellAccessoryDetailClosureButton但是,我不想通过使用添加详细视图附件,而是单击UITableViewCell,它应该会导致另一个视图,其中包含有关UITableViewCell. 我的视图控制器如下所示:

视图控制器.h

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController<UITableViewDataSource,UITableViewDelegate>{
    NSArray *tableItems;
    NSArray *images;
}

@property (nonatomic,retain) NSArray *tableItems;
@property (nonatomic,retain) NSArray *images;

@end

视图控制器.m

#import "ViewController.h"
#import <QuartzCore/QuartzCore.h>
@interface ViewController ()

@end

@implementation ViewController
@synthesize tableItems,images;
- (void)viewDidLoad
{
    [super viewDidLoad];
    tableItems = [[NSArray alloc] initWithObjects:@"Item1",@"Item2",@"Item3",nil];
    images = [[NSArray alloc] initWithObjects:[UIImage imageNamed:@"clock.png"],[UIImage imageNamed:@"eye.png"],[UIImage imageNamed:@"target.png"],nil];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return tableItems.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

    //Step 1:Check whether if we can reuse a cell
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell"];

    //If there are no new cells to reuse,create a new one
    if(cell ==  nil)
    { 
        cell = [[UITableViewCell alloc] initWithStyle:(UITableViewCellStyleDefault) reuseIdentifier:@"cell"];
        UIView *v = [[UIView alloc] init];
        v.backgroundColor = [UIColor redColor];
        cell.selectedBackgroundView = v;
        //changing the radius of the corners
        //cell.layer.cornerRadius = 10;

    }

    //Set the image in the row
    cell.imageView.image = [images objectAtIndex:indexPath.row];

    //Step 3: Set the cell text content
    cell.textLabel.text = [tableItems objectAtIndex:indexPath.row];

    //Step 4: Return the row
    return cell;

}

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
    cell.backgroundColor = [ UIColor greenColor];
}
@end

需要一些指导..谢谢..如果这是一个愚蠢的问题,请原谅我。

4

2 回答 2

2

你应该在你的 UIViewController 中实现以下方法:

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

[例子]

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
     ExampleDataItem *dataItem = [_dataSource objectAtIndex:[indexPath row]];

     DetailViewController *detailViewController = [[DetailViewController alloc] initWithNibName:@"DetailViewController" bundle:nil];
     detailViewController.dataSource = dataItem;

    [self.navigationController pushViewController:detailViewController animated:YES];
}

希望能帮助到你 :)

于 2012-10-28T15:53:55.157 回答
0

实施 UITableViewDelegate 方法- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 在方法中,只需将您的详细信息UIView(假设您全局有引用并在 viewDidLoad: 方法中分配此视图)到。根据self.view所选内容更新详细视图的内容。您indexPath可能还希望有一个“完成" 详细视图上的按钮,可用于返回您的表格视图。

如果您的应用程序使用UINavigationViewController,请使用 detailViewController (类型UIViewController)而不是UIView使用以下命令将其推送到导航控制器:

[self.navigationController pushViewController:detailedViewController animated:YES];
于 2012-10-28T17:20:44.523 回答