4

下面的代码可以工作,但不是我希望的那样。我希望当我单击 UIbutton 时,它会自动更新 UITableview 中的新值而不是旧值。下面的代码仅在我按下 UIbuttons 时有效,然后当我滚动 UITableview 时它会更新具有新值的 UItableview。在我的应用程序中,我使用 UITableview 作为我的 mainclass 的子类。如下图所示

在此处输入图像描述

我在我的 Mainclass 中添加 Tableview,就像这样在 testingViewController.h 中的“testingViewController”

#import "Inputtableview.h"
@interface testingViewController :UIViewController<UITableViewDelegate,UITableViewDataSource> {
     Inputtableview *inputview;
     IBOutlet UITableView *inputtbl; 
}
@end

在 testingViewController.m

- (void)viewDidLoad {
btn1bool=FALSE;
if (inputview == nil) {
    inputview = [[Inputtableview alloc] init];
}

[inputtbl setDataSource:inputview];
[inputtbl setDelegate:inputview];
inputview.view = inputview.tableView;
}

现在在按钮操作方法中

-(IBAction)input:(id)sender
  {
  btn1bool=TRUE;
}

我的子类代码“inputtableview.m”如下所示

- (void)viewDidLoad {
 [super viewDidLoad];
listOfItems=[[NSMutableArray alloc] initWithObjects:@"Iceland",@"Greenland",@"Switzerland",
             @"Norway",@"New Zealand",@"Greece",@"Italy",@"Ireland",nil];

  array1 = [[NSMutableArray alloc] initWithObjects:@"A",@"B",@"C",@"D",@"E",@"F",@"G",@"H", nil] ;
 }

  #pragma mark -
  #pragma mark Table View datasource methods
-(NSInteger) tableView:(UITableView *)table numberOfRowsInSection:(NSInteger)section
    {
    if (btn1bool) {
        return [array1 count];
    }
else {
    return [listOfItems count];
}

[self.tableView reloadData];
   }


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

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier] autorelease];
}

NSLog(@"Row: %i", indexPath.row);
if (btn1bool) {
    NSString *cellValue = [array1 objectAtIndex:indexPath.row];
    cell.text = cellValue;
}
else {
    NSString *cellValue = [listOfItems objectAtIndex:indexPath.row];
    cell.text = cellValue;
      }
   return cell;
 }

任何帮助都会被给予。

4

1 回答 1

1

只需输入以下代码:

[inputtbl reloadData];

您需要在项目中更改一些内容,但我认为这个项目只是为了测试东西。


您希望在按下按钮后重新加载日期,因此您在 IBAction 中调用该方法。

-(IBAction)input:(id)sender
{
    btn1bool=TRUE;
    [inputview.tableView reloadData];
}

要在按下按钮时在 2 个数据源之间切换,您可以更改为这行代码:btn1bool=!btn1bool;

(NSInteger) tableView:(UITableView *)table numberOfRowsInSection:(NSInteger)section
{
    if (btn1bool) {
        return [array1 count];
    } else {
        return [listOfItems count];
    }
}

-(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath是正确的

于 2012-11-09T17:31:09.900 回答