如何在不同的视图控制器上按下按钮来更改tableview数据?

时间:2014-03-22 09:50:26

标签: ios iphone objective-c arrays uitableview

在ViewController上按下按钮以在数组中加载特定的大量信息以便在UITableViewController上显示时,我遇到了一些麻烦。

我知道你可以通过检测segue来做到这一点,但我没有试过这个 - 我取得了成功。我在其他地方读到了如何使用按钮上的标签来识别它,我尝试使用它但是它只显示一组数据,无论我按下了什么按钮。我试过交换很多东西试图让它工作,但无济于事。我有一个带有按钮的ViewController,一个用于显示数组的TableViewController和一个用于显示tableview信息的更好描述的CellViewController。

我的代码很漂亮'遍布商店'在这一刻。我还没有包含Cell View控制器,因为我认为它们与我在这个阶段想要做的事情有很大关联.buttonviewcontroller只是一个普通的UIViewController,两个按钮都链接为&#39 ;故事板中的Button1'类。他们已经给出了标签0和1,我认为这些标签位于''故事板中的副标题。请提醒我,如果这是错误的,我错过了一些非常明显的东西,但这是我能找到的唯一标签' tag'。

老实说,我并不确切知道我在xcode中做了什么,因为我对它并不熟悉,但似乎对它的部分内容有所了解。但是,我现在还不确定我到底做错了什么。

代码:

ButtonViewController.M(这是按钮的位置)

    #import <UIKit/UIKit.h>
    #import "tableViewController.h"
    #import "TableCell.h"

    @interface ButtonViewController : UIViewController

    -(IBAction) button_Clicked:(id)sender;


    @property (strong, nonatomic) IBOutlet UIButton *Button1;

    @end

ButtonViewController.m

   #import "ButtonViewController.h"
   #import "tableViewController.h"
   #import "TableCell.h"

   @interface ButtonViewController ()

   @end


   @implementation ButtonViewController

   -(IBAction) button_Clicked:(id)sender
{

//something here that is going wrong

tableViewController *tableVC = [[tableViewController alloc]initWithNibName:@"tableViewController" bundle:nil];

    if(_Button1.tag==0)
    {
    tableVC.buttonSelected = 0;
    }

    else if(_Button1.tag==1)
    {
    tableVC.buttonSelected = 1;
    }



[self.navigationController pushViewController:tableVC animated:YES];
    [tableVC.tableView reloadData];

@end

tableViewController.h

   #import <UIKit/UIKit.h>

    @interface tableViewController : UITableViewController

    @property (nonatomic, assign) int buttonSelected;

    @property (nonatomic, strong) NSArray *Title;
     //@property (nonatomic, strong) NSMutableArray *Title;
    @property (nonatomic, strong) NSArray *Description;
     //@property (nonatomic, strong) NSMutableArray *Description;
    //Not sure if Mutable or normal array
    @end

tableViewController.m

    #import "tableViewController.h"
    #import "TableCell.h"
    #import "DetailViewController.h"
    #import "ButtonViewController.h"

    @interface tableViewController ()

    @end

    @implementation tableViewController

       - (id)initWithStyle:(UITableViewStyle)style
          {
           self = [super initWithStyle:style];
             if (self) {
             // Custom initialization
             }
           return self;
          }
    - (void)viewDidLoad
     {

    [super viewDidLoad];

      if(_buttonSelected == 0)
    {
        _Title = @[@"Hamstring Muscle Tear",@"Lower Back Pain"];
        _Description = @[@"Blahahaha", @"blahahaha2",@"blalalala3"];
        [self.tableView reloadData];          
    }

    else if (_buttonSelected == 1)
    {
        _Title = @[@"1",@"2",@"3"];
        _Description = @[@"dededdededde", @"deddedede2",@"blalalala3"];
          [self.tableView reloadData];
    }



     #pragma mark - Table view data source
     - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
     {

      // Return the number of sections.
      return 1;
        } 

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

       // Return the number of rows in the section.
       return _Title.count;
       }

       - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath: (NSIndexPath *)indexPath
        {
        static NSString *CellIdentifier = @"TableCell";
TableCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

        // Configure the cell...

         int row = [indexPath row];

         cell.TitleLabel.text = _Title[row];
          cell.DescriptionLabel.text = _Description[row];

         return cell;
         }
       -(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {

       if ([[segue identifier] isEqualToString:@"ShowDetails"]) {
        DetailViewController *detailviewcontroller = [segue destinationViewController];

        NSIndexPath *myIndexPath = [self.tableView indexPathForSelectedRow];

       int row = [myIndexPath row];
       detailviewcontroller.DetailModal = @[_Title[row],_Description[row]];
       }

        }
      @end

2 个答案:

答案 0 :(得分:2)

有两种方法可以做到这一点。

  1. 实施委托方法并在事件上调用它。
  2. 您可以将NSPostNotification事件从一个控制器发送到另一个控制器。

答案 1 :(得分:0)

更改数据,然后发布已更改的NSNotification

表格视图数据源会观察通知并调用[tableView reloadData]

您可以在Apple的示例代码中找到有关如何执行此操作的详细信息。