0

iPhone開発初心者です。を既に作成していUITableViewます。私はすべてを配線し、 と を含めましdelegatedatasource。ただし、 を使用して詳細ビュー アクセサリを追加する代わりに、UITableViewCellAccessoryDetailClosureButtonをクリックするUITableViewCellと、 に関する詳細が表示された別のビューが表示されるはずUITableViewCellです。私のView Controllerは次のようになります:

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

ViewController.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詳細ビューの " ボタン。テーブル ビューに戻るために使用できます。

あなたのアプリケーションUINavigationViewControllerUIViewControllerUIView

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