如何通过Button移动到tableView的下一行

时间:2013-06-28 19:42:59

标签: objective-c row tableview nsindexpath

这是我的问题:

通过按下DetailViewController上的按钮,我想接收下一行的数据。

这是我到目前为止所尝试的内容:

-(IBAction)next:(id)sender {
question.text = [questions objectAtIndex:indexPath.row+1];
}

但现在它需要存储在第1行中的数据。但我想从行中的下一行检索数据。

question是我希望文本显示的标签名称。
questions是我的NSMutableArray名称,用于存储我的数据。

以下是完整的代码:

//
//  NINDetailViewController.m
//  NIN
//
//  Created by Hegg Roger on 27.06.13.
//  Copyright (c) 2013 Hegg. All rights reserved.
//

#import "NINDetailViewController.h"
#import "NIN.h"

@interface NINDetailViewController ()

@end

@implementation NINDetailViewController

@synthesize transfer;
@synthesize content;
@synthesize questions;
@synthesize questions1;
@synthesize answers;
@synthesize question;
@synthesize questionTableView;
@synthesize indexPath;


/*
-(IBAction)next:(id)sender {
question.text = [questions objectAtIndex:indexPath.row+1];
}      


-(IBAction)prev:(id)sender {

}
*/

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
    // Custom initialization
}
return self;
}

- (void)viewDidLoad
{

questions = [[NSMutableArray alloc]initWithObjects:
              @"1. Wie lautet die richtige Reihenfolge beim Arbeiten an elektrischen
Installationen (Arbeitssicherheit)?",
             @"2. Was versteht man unter dem Begriff UVG?",
             @"3. Was ist die wichtigste Bestimmung des UVGs?",nil];



questions1 = [[NSMutableArray alloc]initWithObjects:
             @"1. Was bedeuten die Abkürzungen NIV / NIN / StV?",nil];


[super viewDidLoad];




content.text = transfer;
 //  question.text = [questions objectAtIndex:indexPath.row];


}



- (NSInteger)tableView : (UITableView *)tableView numberOfRowsInSection:(NSInteger)section       
{


return [questions count];
 }

 (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath    
 *)indexPath
{
static NSString *simpleTableIdentifier = @"questionCell";

UITableViewCell *cell = [questionTableView 
dequeueReusableCellWithIdentifier:simpleTableIdentifier];

if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault 
reuseIdentifier:simpleTableIdentifier];
}

if ([content.text isEqualToString:@"Unfallverhütung"]) {
    question.text = [questions objectAtIndex:indexPath.row];
}
else
    if ([content.text isEqualToString:@"Grundlagen / Begriffe / Kennzeichnungen"]) {
        question.text = [questions1 objectAtIndex:indexPath.row];
    }



return cell;
}



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

@end

@TBlue:我的建议有误: enter image description here

3 个答案:

答案 0 :(得分:0)

除非indexPath是你在某处定义的全局变量,否则你在这里有一个非常明显的问题。也就是说,indexPath不在您在上面发布的方法中访问它的范围内...除非您未能在方法中发布整个代码...

答案 1 :(得分:0)

你的阵列在哪里举行?变量怎么样?

有些代码在这里真的很有帮助。听起来你的indexPath没有在你使用它的地方定义,这意味着你可能会添加nil + 1,这可能是你的第1行问题的根源。

发布一些代码,以便我们提供更多帮助!

答案 2 :(得分:0)

尝试类似

的内容
@interface ViewController () {
    NSInteger selectedindex;
}

- (void)viewDidLoad {
    [super viewDidLoad];
    selectedindex = -1;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    selectedindex = indexPath.row;
}

- (IBAction)next:(id)sender {
    if (questions.count == 0 || selectedindex < 0) {
        return;
    }
    question.text = [questions objectAtIndex:selectedindex + 1];
}