gpt4 book ai didi

iphone - 当用户单击一行时,如何移动到另一个 View Controller ?

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:34:35 24 4
gpt4 key购买 nike

我是 iPhone 开发的新手,我想在用户点击特定行时移动到另一个页面。所以,如果他们点击第一行,我希望页面重定向到第一个 View Controller ,依此类推。每行都有自己的 View Controller 。

最佳答案

首先,您不需要为每一行设置不同的 View Controller (除非您有充分的理由这样做)。

正确的方法是设置 1 个适合所有单元格的 View Controller ,并根据所选行更改其数据。

你这样做的方式是:

in the - DidSelectRowAtIndexPath function in your implementation file you shuld:

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

//allocate your view controller
DetailedViewController *detailedViewController = [[DetailedViewController alloc] init];

//send properties to your view controller
detailedViewController.property1 = someProperty1;
detailedViewController.property2 = someProperty2;

//push it to the navigationController
[[self navigationController] pushViewController:detailedViewController animated:YES];
[detailedViewController release];
}

我确实建议您从使用 apple 示例开始,它们很棒而且数量很多:

http://developer.apple.com/library/ios/#samplecode/TableViewSuite/Introduction/Intro.html%23//apple_ref/doc/uid/DTS40007318

祝你好运

关于iphone - 当用户单击一行时,如何移动到另一个 View Controller ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5102122/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com