如何使用相同的导航控制器从不同的单元格转到不同的视图控制器?

发布于 2024-11-18 17:21:06 字数 666 浏览 3 评论 0原文

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath    *)indexPath
{    
    [[tableView cellForRowAtIndexPath:indexPath] setSelected:NO animated:YES];

    if(indexPath.section==0)
    {
        if([array1 objectAtIndex:0])
        {
            BirthDateController *yeniSayfa=[[BirthDateController alloc] init];

            yeniSayfa.modalTransitionStyle=UIModalTransitionStyleFlipHorizontal;

            [self presentModalViewController:yeniSayfa animated:YES];

            [yeniSayfa release];
        }
    }
}

我只希望 array1 中的第一个项目进入此 BirthDate 模态视图,但现在所有第一部分都使用此模态视图。任何人都可以帮助我仅使第一部分的第一个单元格打开此模态视图。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath    *)indexPath
{    
    [[tableView cellForRowAtIndexPath:indexPath] setSelected:NO animated:YES];

    if(indexPath.section==0)
    {
        if([array1 objectAtIndex:0])
        {
            BirthDateController *yeniSayfa=[[BirthDateController alloc] init];

            yeniSayfa.modalTransitionStyle=UIModalTransitionStyleFlipHorizontal;

            [self presentModalViewController:yeniSayfa animated:YES];

            [yeniSayfa release];
        }
    }
}

I want only the first one the first item in the array1 to go this BirthDate modal view but now all the first section is using this modalview.Can anybody help me for making only the first cell of the first section opens this modal view.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

请止步禁区 2024-11-25 17:21:06

我只想要第一个
array1 中的项目转到此
出生日期模态视图,但现在所有
第一部分正在使用此模态视图。

如果我理解正确的话,你的意思是第一部分的第一行。然后,像这样改变你的条件:

if( indexPath.section == 0 && indexPath.row == 0 ) {

生成的代码将如下所示:

if( indexPath.section == 0 && indexPath.row == 0 ) {
    BirthDateController *yeniSayfa=[[BirthDateController alloc] init];
    yeniSayfa.modalTransitionStyle=UIModalTransitionStyleFlipHorizontal;
    [self presentModalViewController:yeniSayfa animated:YES];
    [yeniSayfa release];
}

内部 if:

if([array1 objectAtIndex:0])

对我来说确实有意义。除非 array1 为 nil(或引发异常),否则它将评估为 true。 objectAtIndex: 无法返回 nil,因为 NSArray 无法存储 nil 值,并且索引超出末尾的数组,它会引发 NSRangeException

I want only the first one the first
item in the array1 to go this
BirthDate modal view but now all the
first section is using this modalview.

If I understand correctly, you mean the first row in the first section. Then, change your condition like this:

if( indexPath.section == 0 && indexPath.row == 0 ) {

The resulting code would look like this:

if( indexPath.section == 0 && indexPath.row == 0 ) {
    BirthDateController *yeniSayfa=[[BirthDateController alloc] init];
    yeniSayfa.modalTransitionStyle=UIModalTransitionStyleFlipHorizontal;
    [self presentModalViewController:yeniSayfa animated:YES];
    [yeniSayfa release];
}

The inner if:

if([array1 objectAtIndex:0])

does make sense to me. It will evaluate to true unless array1 is nil (or raise an exception). objectAtIndex: can not return nil because a NSArray can not store nil values and if the index is beyond the end of the array, it raises a NSRangeException.

月光色 2024-11-25 17:21:06

您还需要检查 if 语句中的 row

if (indexPath.section == 0 && indexPath.row == 0) {

You also need to check for row in the if statement.

if (indexPath.section == 0 && indexPath.row == 0) {
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文