iOS UITableView仅在滚动时重新加载单元格数据

时间:2012-03-23 21:45:27

标签: objective-c ios uitableview xcode4

我正在开发我的第一个iOS的Objective-C应用程序,我遇到了在UITableView中重新加载数据的问题。

重新加载数据后,单元格内容将仅在单元格在容器的可视区域下方滚动时更新。

这是我的.h代码:

#import <UIKit/UIKit.h>
#import "AFHTTPClient.h"
#import "AFJSONRequestOperation.h"

@interface HelloWorldViewController : UIViewController <UITextFieldDelegate, UITableViewDelegate, UITableViewDataSource>{
    NSMutableArray *tableViewArray;
    IBOutlet UITableView *tableView;
}
@property (nonatomic, retain) NSMutableArray *tableViewArray;
@property (weak, nonatomic) IBOutlet UILabel *connectionLabel;
@property (nonatomic, retain) IBOutlet UITableView *tableView;
@property (weak, nonatomic) IBOutlet UITextView *textArea;
@property (weak, nonatomic) IBOutlet UITextField *textField2;
@property (weak, nonatomic) IBOutlet UILabel *label;
@property (weak, nonatomic) IBOutlet UITextField *textField;
@property (copy, nonatomic) NSString *userName;
@property (copy, nonatomic) NSString *passWord;
@property (copy, nonatomic) NSMutableString *serverResponse;
- (IBAction)callHome:(id)sender;
@end

和.m代码:

#import "HelloWorldViewController.h"

@interface HelloWorldViewController ()

@end

@implementation HelloWorldViewController
@synthesize tableViewArray;
@synthesize connectionLabel;
@synthesize userName = _userName;
@synthesize passWord = _password;
@synthesize serverResponse = _serverResponse;
@synthesize tableView;
@synthesize textArea;
@synthesize textField2;
@synthesize label;
@synthesize textField;

- (void)viewDidLoad
{
    [super viewDidLoad];
    tableViewArray = [[NSMutableArray alloc] init];
    [tableViewArray addObject:@"TEST1"];
    [tableViewArray addObject:@"TEST2"];
    [tableViewArray addObject:@"TEST3"];
}

- (void)viewDidUnload
{
    [self setTextField:nil];
    [self setLabel:nil];
    [self setTextField2:nil];
    [self setTextArea:nil];
    [self setTableView:nil];
    [self setConnectionLabel:nil];
    [super viewDidUnload];
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
        return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
    } else {
        return YES;
    }
}

- (BOOL)textFieldShouldReturn:(UITextField *)theTextField {
    if (theTextField == self.textField) {
        [theTextField resignFirstResponder];
    }
    return YES;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return [tableViewArray count];
}

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

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];

    cell.textLabel.text = [self.tableViewArray objectAtIndex: [indexPath row]];
    return cell;
}

- (IBAction)callHome:(id)sender {
    self.userName = self.textField.text;
    self.passWord = self.textField2.text;

    NSMutableString *tempResponse = [[NSMutableString alloc] initWithFormat:@""]; 

    AFHTTPClient *client = [[AFHTTPClient alloc] initWithBaseURL:[NSURL URLWithString:@"http://example.com/"]];

    [client  setAuthorizationHeaderWithUsername:self.userName password:self.passWord];

    [client getPath:@"login.do" parameters:nil 
            success:^( AFHTTPRequestOperation *operation , id responseObject ){
                NSLog(@"Authentication Success: %d", operation.response.statusCode); 
                self.serverResponse = [NSMutableString stringWithFormat:@"Authentication Success: %d", operation.response.statusCode ]; 
                [tempResponse appendString: self.serverResponse];
                self.textArea.text = tempResponse;
            } 
            failure:^(AFHTTPRequestOperation *operation , NSError *error){
                NSLog(@"Authentication Error: %@\n%@", error, operation);
            }
     ];

    [client getPath:@"test.json.do" parameters:nil 
            success:^( AFHTTPRequestOperation *operation , id responseObject ){
                NSLog(@"Retrieval Success: %d", operation.response.statusCode);
                NSDictionary *results = [operation.responseString JSONValue];
                NSMutableArray *buildings = [results objectForKey:@"buildings"]; 
                NSMutableArray *names = [[NSMutableArray alloc] init]; 
                for (NSDictionary *building in buildings)
                {
                    [names addObject:[building objectForKey:@"name"]];
                }
                self.tableViewArray = names;
                self.serverResponse = [NSMutableString stringWithFormat:@"\nBuilding List Retrieval Success: %d", operation.response.statusCode ]; 
                [tempResponse appendString: self.serverResponse];
                self.connectionLabel.text = tempResponse;
            } 
            failure:^(AFHTTPRequestOperation *operation , NSError *error){
                NSLog(@"Retrieval Error: %@\n%@", error, operation);
            }
     ];

    NSLog(@"tableView is: %@", [tableView description]);
    [tableView reloadData];
}

@end

当我调用[self.tableView description]时,结果为null,但如果我从cellForRowAtIndexPath调用它,则会得到以下结果:

tableView is: <UITableView: 0x8a71000; frame = (0 0; 280 191); clipsToBounds = YES; autoresize = W+H; layer = <CALayer: 0x6b7e860>; contentOffset: {0, 0}>. Delegate: HelloWorldViewController, DataSource: HelloWorldViewController

以下是界面构建器的屏幕截图: enter image description here

感谢所有帮助!谢谢!

2 个答案:

答案 0 :(得分:4)

您可能没有在界面构建器中连接UITableView。

你必须在从文件所有者按下ctrl的同时拖动到UITableView并连接它。

此外,您不应该在没有自己的情况下访问您的属性,您应该这样做:

@synthesize tableViewArray = _tableViewArray;

然后使用以下命令访问它:

self.tableViewArray

尽量避免直接访问您的ivars,请使用该属性!

祝你好运!

答案 1 :(得分:0)

看起来您可能没有使用IB中的HelloWorldViewController tabelView属性连接UITableView。