表的偏移量

时间:2014-03-13 07:00:14

标签: objective-c uitableview ios7 uinavigationcontroller offset

我的UIViewController上有两个相同的表,在UINavigationController中。我不明白为什么第二张表有偏移。

#import "ViewController.h"

@interface ViewController () <UITableViewDelegate, UITableViewDataSource>

@property (strong, nonatomic) IBOutlet UITableView *tableLeft;
@property (strong, nonatomic) IBOutlet UITableView *tableRight;


@end

@implementation ViewController

- (void)viewDidLoad {

    [super viewDidLoad];
}


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

    return 10;
}


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

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

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

    cell.textLabel.text = [NSString stringWithFormat:@"row %d", indexPath.row];
    return cell;
}


- (void)didReceiveMemoryWarning {

    [super didReceiveMemoryWarning];
}

@end

enter image description here enter image description here

0 个答案:

没有答案