Skip to content

Commit

Permalink
sync
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Stadnik committed Mar 29, 2012
1 parent 6e566a5 commit a266feb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
Binary file not shown.
8 changes: 8 additions & 0 deletions BADemo/BAMeshViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,14 @@ - (void)viewDidLoad {
self.meshView.sectionFooterHeight = 50;
self.meshView.backgroundColor = [UIColor grayColor];
self.meshView.contentInset = UIEdgeInsetsMake(5, 5, 5, 5);
UILabel *headerLabel = [[[UILabel alloc] init] autorelease];
headerLabel.font = [UIFont systemFontOfSize:20];
headerLabel.text = @"Mesh Header";
self.meshView.meshHeaderView = headerLabel;
UILabel *footerLabel = [[[UILabel alloc] init] autorelease];
footerLabel.font = [UIFont boldSystemFontOfSize:10];
footerLabel.text = @"Mesh Footer";
self.meshView.meshFooterView = footerLabel;
[self.view addSubview:self.meshView];
}

Expand Down
2 changes: 1 addition & 1 deletion BaseAppKit
Submodule BaseAppKit updated 2 files
+5 −3 BAMeshView.h
+65 −4 BAMeshView.m

0 comments on commit a266feb

Please sign in to comment.