
####iOS7 Programming Cookbook 第四章 Constructing Headers and Footers in Table Views

#####ViewController.m
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
static NSString *CellIdentifier = @"CellIdentifier";
@interface () <UITableViewDelegate, UITableViewDataSource> @property (nonatomic, strong) UITableView *myTableView; @end
@implementation
- (CGFloat) tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{ if (section == 0){ return 30.0f; } return 0.0f; }
- (CGFloat) tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section{ if (section == 0){ return 30.0f; } return 0.0f; }
- (NSString *) tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{ if (section == 0){ return @"Section 1 Header"; } return nil; }
- (NSString *) tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section{ if (section == 0){ return @"Section 1 Footer"; } return nil; }
- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{ UITableViewCell *cell = nil; cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath]; cell.textLabel.text = [[NSString alloc] initWithFormat:@"Cell %ld", (long)indexPath.row]; return cell; }
- (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{ return 3; }
-(UIStatusBarStyle)preferredStatusBarStyle { return UIStatusBarStyleLightContent; }
-(void)viewWillLayoutSubviews{ if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) { self.view.clipsToBounds = YES; CGRect screenRect = [[UIScreen mainScreen] bounds]; CGFloat screenHeight = screenRect.size.height; self.view.frame = CGRectMake(0, 20, self.view.frame.size.width,screenHeight-20); self.view.bounds = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height); } }
- (void)viewDidLoad{ [super viewDidLoad]; self.edgesForExtendedLayout = UIRectEdgeNone; self.myTableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStyleGrouped]; [self.myTableView registerClass:[UITableViewCell class] forCellReuseIdentifier:CellIdentifier]; self.myTableView.dataSource = self; self.myTableView.delegate = self; self.myTableView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight; [self.view addSubview:self.myTableView]; }
@end
|
Reference
近期评论