更新了我的问题

我有一个设置页面,在该页面的左侧显示设置名称,在右侧显示当前设置(UITableViewCellStyleValue1)。当您点击设置的单元格时,将获得一个操作表,可让您选择“查看全部”,“是”,“否”。我的目标是将他们选择的值放在单元格的右侧,以便他们可以看到所做的更改。

动作表事件

- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {
    if (buttonIndex == 0) {
        thisVal = @"Show All";
        NSLog(@"Button 0");
    } else if (buttonIndex == 1) {
        thisVal = @"Yes";
        NSLog(@"Button 1");
    } else if (buttonIndex == 2) {
        thisVal = @"No";
        NSLog(@"Button 2");
    } else if (buttonIndex == 3) {
        NSLog(@"Button 3");
    }

    [self saveSettings:thisKey :thisVal];

    NSLog(@"Before: %@",[table2settings objectAtIndex:(NSUInteger)thisRow]);

    if (thisSection == 0){
        [table1settings replaceObjectAtIndex:(NSUInteger)thisRow withObject:thisVal];
    }else{
        [table2settings replaceObjectAtIndex:(NSUInteger)thisRow withObject:thisVal];
    }

    NSLog(@"After: %@",[table2settings objectAtIndex:(NSUInteger)thisRow]);

    [self.tblView reloadData];
}

由于BeforeAfter NSlog的原因,我可以看到实际的数组正在更新。但是tblView不会重新加载。数据。

cellForRowAtIndexPath
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *CellIdentifier;
    if (indexPath.row == 0 && indexPath.section == 0){
        CellIdentifier = @"CellWithSwitch";
    }else{
        CellIdentifier = @"PlainCell";
    }


    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:CellIdentifier];
    }

    if (indexPath.section == 0){
        [[cell textLabel] setText:[table1labels objectAtIndex:indexPath.row]];
        if (indexPath.row == 0 && indexPath.section == 0){
            BOOL switchOn;
            if ([[table1settings objectAtIndex:indexPath.row] isEqualToString: @"On"]){
                switchOn = YES;
            }else{
                switchOn = NO;
            }

            switchview = [[UISwitch alloc] initWithFrame:CGRectZero];
            [switchview setOn:switchOn animated:YES];
            [switchview addTarget:self action:@selector(updateCurrentLocation) forControlEvents:UIControlEventValueChanged];
            cell.accessoryView = switchview;
        }else{

            if (![[table1settings objectAtIndex:indexPath.row] isEqualToString: @""]){
                [[cell detailTextLabel] setText:[table1settings objectAtIndex:indexPath.row]];
            }else{
                [[cell detailTextLabel] setText:@""];
            }
        }
    }else{
        if (![[table2settings objectAtIndex:indexPath.row] isEqualToString: @""]){
            [[cell detailTextLabel] setText:[table2settings objectAtIndex:indexPath.row]];
        }else{
            [[cell detailTextLabel] setText:@""];
        }
        [[cell textLabel] setText:[table2labels objectAtIndex:indexPath.row]];

    }

    return cell;
}

更多信息

这是我的.h文件的@interface:
NSMutableArray *table1settings;
NSMutableArray *table2settings;

在此之下:
@property (nonatomic, retain) NSMutableArray *table1labels;
@property (nonatomic, retain) NSMutableArray *table2labels;

和我的.m文件:
@synthesize table1settings;
@synthesize table2settings;

updateCurrentLocation
- (void)updateCurrentLocation {
    switchview.on ? [self saveSettings:@"useLocation" :@"On"] : [self saveSettings:@"useLocation" :@"Off"];
    NSLog(@"%@", [self loadSettings:@"useLocation"]);
}

更多
@interface DOR_FiltersViewController : UIViewController <UITableViewDataSource, UITableViewDelegate, UIActionSheetDelegate>
UITableView *tblView;
@property (nonatomic, retain) UITableView *tblView;
@synthesize tblView;

另外,对于@implementation DOR_FiltersViewController,我得到一条警告,说“执行不完整”。我不知道该一般性声明可能意味着什么。试图查找它,似乎几乎没有任何意义。

修复

首先,我发现我没有将tblView连接到我的表视图。 -.-我必须右键单击表视图并将其拖到我的.h文件中,并将其链接到tblView。我以为我已经做到了。我现在觉得很愚蠢。然后,对于@interface,我必须使用__weak IBOutlet UITableView *tblView;,并在该@property (weak, nonatomic) IBOutlet UITableView *tblView;下使用,然后一切正常。

最佳答案

两件事:table1settingstable2settings应该是NSMutableArray,尽管根据您得到的错误,这不是问题。

看来thisVal是您班上的iVar。您应该在clickedButtonAtIndex:中分配它

试试这个:

- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex {

    NSString *thisVal; //this line was added

    if (buttonIndex == 0) {
        thisVal = @"Show All";
        NSLog(@"Button 0");
    } else if (buttonIndex == 1) {
        thisVal = @"Yes";
        NSLog(@"Button 1");
    } else if (buttonIndex == 2) {
        thisVal = @"No";
        NSLog(@"Button 2");
    } else if (buttonIndex == 3) {
        NSLog(@"Button 3");
    }

    [self saveSettings:thisKey :thisVal];

    if (thisSection == 0){
        NSLog(@"thisRow is %d and table1settings has %d elements", thisRow, [table1settings count]);
        [table1settings replaceObjectAtIndex:(NSUInteger)thisRow withObject:thisVal];
    }else{
        NSLog(@"thisRow is %d and table2settings has %d elements", thisRow, [table2settings count]);
        [table2settings replaceObjectAtIndex:(NSUInteger)thisRow withObject:thisVal];
    }
    [self.tblView reloadData];
}

当然,请删除thisVal的其他实现(可能在@interface部分中)。

还要注意replaceObjectAtIndex:具有以下结构:
- (void)replaceObjectAtIndex:(NSUInteger)index withObject:(id)anObject
NSUinteger应该有简单的index

编辑:

如果调用[self.tblView reloadData];不会启动任何cellForRowAtIndexPath:调用,则self.tblView不会正确引用。

编辑2:

确保- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath所在的类采用UITableViewDataSource协议。

您可以在.h文件中执行此操作,例如:
@interface YourClass:UIViewController <UITableViewDataSource>

并且您应该让table知道她的dataSource是谁。在代码中,您设置了
self.tblView = thatTable;


self.tblView.dataSource = self;

如果您使用的是UITableViewDelegate方法中的任何一种,则必须将其放入混合中:
@interface YourClass:UIViewController <UITableViewDataSource,UITableViewDelegate>


self.tblView.delegate = self;

关于iphone - 重新加载表 View 不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9907464/

10-12 17:27