【问题标题】:Multiple views and UITables from one source, how to populate them?来自一个来源的多个视图和 UITables,如何填充它们?
【发布时间】:2014-04-04 03:52:22
【问题描述】:

好的,我需要三个 UITableView,它们都来自同一个视图控制器代码。我需要从AG_ViewController.m 文件中全部填充它们。

AG_ViewController.h

    #import <UIKit/UIKit.h>

    @interface AG_ViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>{

        IBOutlet UITableView *yesterdayTableView;
        IBOutlet UITableView *tomorrowTableView;
        IBOutlet UITableView *tableView;
        IBOutlet UILabel *todaysDate;
        IBOutlet UILabel *subtractDate;
        IBOutlet UILabel *addDate;
    }
    @end

AG_ViewController.m

#import "AG_ViewController.h"
#import "AG_Storage.h"
#import "AG_AddItemViewController.h"

@interface AG_ViewController ()

@property NSMutableArray *mainArray;
@property NSMutableArray *yesterdayArray;
@property NSMutableArray *tomorrowArray;
@property NSDate *todayDate;
@property NSDate *tomorrowsDate;
@property NSDate *yesterdaysDate;
@property int counter;

@property(weak,nonatomic)IBOutlet UIButton *yesterdayButton;
@property(weak,nonatomic)IBOutlet UIButton *tomorrowButton;
@property(weak,nonatomic)IBOutlet UIButton *backButton;

@end

@implementation AG_ViewController

- (void)viewDidLoad
{
    [super viewDidLoad];
    self.mainArray = [[NSMutableArray alloc] init];
    self.yesterdayArray = [[NSMutableArray alloc]init];
    self.tomorrowArray = [[NSMutableArray alloc]init];
    [self loadInitialData];
}

- (void)loadInitialData
{
    // Do any additional setup after loading the view, typically from a nib.


    //NSDate Info

    NSTimeInterval secondsPerDay = 24 * 60 * 60;
    NSDate *today = [[NSDate alloc]init];
    NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
    [dateFormat setDateFormat:@"MMMM dd, yyyy"];

    self.todayDate = today;
    self.tomorrowsDate = [today dateByAddingTimeInterval: secondsPerDay];
    self.yesterdaysDate = [today dateByAddingTimeInterval: -secondsPerDay];

    NSString *todayString = [dateFormat stringFromDate:self.todayDate];
    NSString *tomorrowString = [dateFormat stringFromDate:self.tomorrowsDate];
    NSString *yesterdayString = [dateFormat stringFromDate:self.yesterdaysDate];

    todaysDate.text = todayString;
    addDate.text = tomorrowString;
    subtractDate.text = yesterdayString;

    AG_Storage *theDateToday = [[AG_Storage alloc]init];
    theDateToday.todaysDate = self.todayDate;



    //Populate mainArray
    for (int x= 0; x!=-99; x++) {
        //get ready to call the NSUserDefaults


        NSData *data = [[NSUserDefaults standardUserDefaults] objectForKey:[NSString stringWithFormat:@"%@%d",todayString,x]];
        AG_Storage *someStorageObject = [NSKeyedUnarchiver unarchiveObjectWithData:data];
        AG_Storage *storeToArray = [[AG_Storage alloc]init];
        storeToArray.itemName = someStorageObject;


        if (someStorageObject != nil) {
            //add the data to the mainArray and update counter
            [self.mainArray addObject:storeToArray];
            self.counter++;
        }
        else if ((someStorageObject == nil) && (x==99)){
            //exit when done
            x=-100;


        }

    }


    //Populate yesterdayArray
    for (int x= 0; x!=-99; x++) {
        //get ready to call the NSUserDefaults


        NSData *data = [[NSUserDefaults standardUserDefaults] objectForKey:[NSString stringWithFormat:@"%@%d",yesterdayString,x]];
        AG_Storage *someStorageObject = [NSKeyedUnarchiver unarchiveObjectWithData:data];
        AG_Storage *storeToArray = [[AG_Storage alloc]init];
        storeToArray.itemName = someStorageObject;


        if (someStorageObject != nil) {
            //add the data to the mainArray and update counter
            [self.yesterdayArray addObject:storeToArray];
            self.counter++;
        }
        else if ((someStorageObject == nil) && (x==99)){
            //exit when done
            x=-100;


        }

    }


    //Populate tomorrowArray
    for (int x= 0; x!=-99; x++) {
        //get ready to call the NSUserDefaults


        NSData *data = [[NSUserDefaults standardUserDefaults] objectForKey:[NSString stringWithFormat:@"%@%d",tomorrowString,x]];
        AG_Storage *someStorageObject = [NSKeyedUnarchiver unarchiveObjectWithData:data];
        AG_Storage *storeToArray = [[AG_Storage alloc]init];
        storeToArray.itemName = someStorageObject;


        if (someStorageObject != nil) {
            //add the data to the mainArray and update counter
            [self.tomorrowArray addObject:storeToArray];
            self.counter++;
        }
        else if ((someStorageObject == nil) && (x==99)){
            //exit when done
            x=-100;


        }

    }
}

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

    if(tableView == tomorrowTableView){
        return [self.tomorrowArray count];
    }
    else if(tableView == yesterdayTableView)
        return [self.yesterdayArray count];
    else
        return [self.mainArray count];
}


- (UITableViewCell *)tableView:(UITableView *)tableViewer cellForRowAtIndexPath:(NSIndexPath *)indexPath{

    UITableViewCell *cell = [tableViewer dequeueReusableCellWithIdentifier:@"thisCell"];
    AG_Storage *toDoItem = [self.mainArray objectAtIndex:indexPath.row];
    cell.textLabel.text = toDoItem.itemName;



    if (toDoItem.completed) {
        cell.accessoryType = UITableViewCellAccessoryCheckmark;
    }
    else{
        cell.accessoryType = UITableViewCellAccessoryNone;
    }

    return cell;

}



- (IBAction)unwindToList:(UIStoryboardSegue *)segue
{

    NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
    [dateFormat setDateFormat:@"MMMM dd, yyyy"];

    AG_AddItemViewController *source = [segue sourceViewController];
    AG_Storage *item = source.store;

    NSDate *dateCreated = item.creationDate;



    NSString *todayString = [dateFormat stringFromDate:self.todayDate];
    NSString *dateCreatedString = [dateFormat stringFromDate:dateCreated];
    NSString *tomorrowString = [dateFormat stringFromDate:self.tomorrowsDate];
    NSString *yesterdayString = [dateFormat stringFromDate:self.yesterdaysDate];



    //Set up file storage!



    if (item != nil) {


        if ([dateCreatedString isEqualToString:todayString]) {
            [self.mainArray addObject:item];
            [tableView reloadData];


            NSData *data = [NSKeyedArchiver archivedDataWithRootObject:item.itemName];

            [[NSUserDefaults standardUserDefaults] setObject:data forKey:[NSString stringWithFormat:@"%@%d",todayString,self.counter]];
            [[NSUserDefaults standardUserDefaults] synchronize];


        }
        else if ([dateCreatedString isEqualToString:tomorrowString]){
            [self.tomorrowArray addObject:item];
            [tableView reloadData];

            NSLog(@"THIS WORKED TOO :D");
        }
        else if ([dateCreatedString isEqualToString:yesterdayString]){
            [self.yesterdayArray addObject:item];
            [tableView reloadData];

            NSLog(@"THIS WORKED");
        }
        else{

        }
    }
    self.counter++;
}

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


#pragma mark - Table view delegate

- (void)tableView:(UITableView *)tableViewer didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    [tableViewer deselectRowAtIndexPath:indexPath animated:NO];
    AG_Storage *tappedItem = [self.mainArray objectAtIndex:indexPath.row];
    tappedItem.completed = !tappedItem.completed;
    [tableViewer reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationNone];

}

- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
    // Return YES if you want the specified item to be editable.
    return YES;
}

// Override to support editing the table view.
- (void)tableView:(UITableView *)tableViews commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {

    NSDateFormatter *dateFormat = [[NSDateFormatter alloc] init];
    [dateFormat setDateFormat:@"MMMM dd, yyyy"];

    NSString *todayString = [dateFormat stringFromDate:self.todayDate];

    if (editingStyle == UITableViewCellEditingStyleDelete) {

        //Delete from storage
        for (int x = 0; x!=-99; x++) {


            NSData *data = [[NSUserDefaults standardUserDefaults] objectForKey:[NSString stringWithFormat:@"%@%d",todayString,x]];
            AG_Storage *someStorageObject = [NSKeyedUnarchiver unarchiveObjectWithData:data];
            AG_Storage *storeToArray = [[AG_Storage alloc]init];
            storeToArray.itemName = someStorageObject;



            AG_Storage *toDoItem = [self.mainArray objectAtIndex:indexPath.row];
            NSString *compare = toDoItem.itemName;

            //If they equal then delete from NSUserDefaults
            if ([compare isEqualToString:someStorageObject]) {

                [[NSUserDefaults standardUserDefaults]removeObjectForKey:[NSString stringWithFormat:@"%@%d",todayString,x]];
                [[NSUserDefaults standardUserDefaults]synchronize];
                x=-100;
            }
            else
            {

            }
            if (x>10) {
                x=-100;
            }


        }

        [self.mainArray removeObjectAtIndex:indexPath.row];
        [tableViews deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];


    }
}

@end

我一次只设置了一张桌子,那么我如何让yesterdayTableView 变成yesterdayArray 填充?

【问题讨论】:

    标签: ios iphone xcode uitableview uiviewcontroller


    【解决方案1】:

    你可以保留一个 tableView。

    根据您的需要,一个表格查看多个单元格的步骤

    1) 为昨天和明天的 nibs/storyboard 设计单独的单元格
    2) 通过 if else 条件单击某个按钮 tableView:cellForRowAtIndexPath 时交换单元格。

    或者去viewController遏制

    【讨论】:

      【解决方案2】:

      有几种方法可以做到这一点,

      如果您一次只需要显示一个 tableView,您可以在 tableView:cellForRowAtIndexPath: 数据源方法中执行类似的操作:

      愚蠢的方式

      - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
      {
          if (kAppState_Yesterday) { // Set the controllerstate so that it knows that the arrayDatasource should be yesterday
              // create and return cell corresponding to yesterdayArray.
          }
      }
      

      如果您的所有单元格看起来都一样,您可以有一个 NSArray *dataSource 并将其分配给不同的数组。

      “更聪明的方法”

      if userClicksButton `display yesterday array`
      
          self.dataSource = self.yesterdayArray
      
      end
      

      这样,您的tableView:cellForRowAtIndexPath: 将更加一致,因为 if 不会充满条件。

      如果事情变得更复杂,我建议使用控制器遏制。

      【讨论】:

        猜你喜欢
        • 2011-07-19
        • 1970-01-01
        • 2019-07-13
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2015-11-28
        相关资源
        最近更新 更多