Last active
December 27, 2015 08:09
-
-
Save charlesmchen/7294435 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WeView *headerView = [[WeView alloc] init]; | |
headerView.backgroundColor = [UIColor colorWithWhite:0.5f alpha:0.5f]; | |
headerView.opaque = NO; | |
[[headerView addSubviewWithCustomLayout:[DemoFactory createLabel:@"Ferdinand Hodler" | |
fontSize:20.f]] | |
setMargin:5]; | |
[[[[headerView addSubviewWithCustomLayout:[DemoFactory buttonWithImageName:@"Glyphish_Icons/14-tag.png"]] | |
setHMargin:10] | |
setVMargin:5] | |
setHAlign:H_ALIGN_RIGHT]; | |
[[rootView addSubviewWithCustomLayout:[headerView setHStretches]] | |
setVAlign:V_ALIGN_TOP]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment