Designed for rapid table creation with minimal code, easy customisation, attractive default styling, and with most common design patterns automated without need for fidgety UIView tweaking.
- Box lines accept and automatically lay out arbitrary arrays of
UIViews
,NSStrings
, andUIImages
- Create box lines with multiline text, automatically formatted and sized
- Intelligent handling of space limitations, with optional left or right side precedence
- Separate arrays for
topLines
,middleLines
, andbottomLines
, to simplify common layout patterns - A convenience
screenshot
method for capturingUIImages
of boxes with OS X screenshot style drop shadows - Animations for box adding, removing, and moving
- Optional edge snapping on scroll
Complex box layouts created with simple code.
Add the MGBox folder to your project.
MGScrollView *scroller = [[MGScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 460];
[self.view addSubview:scroller];
MGStyledBox *box = [MGStyledBox box];
[scroller.boxes addObject:box];
// a header line
MGBoxLine *header = [MGBoxLine lineWithLeft:@"My First Box" right:nil];
header.font = [UIFont fontWithName:@"HelveticaNeue-Bold" size:16];
[box.topLines addObject:header];
// a string on the left and a horse on the right
UIImage *horse = [UIImage imageNamed:@"horse"];
MGBoxLine *line1 = [MGBoxLine lineWithLeft:@"A string on the left" right:horse];
[box.topLines addObject:line1];
// create a second box
MGStyledBox *box2 = [MGStyledBox box];
[scroller.boxes addObject:box2];
// add a line with multiline text
NSString *blah = @"Multiline content is automatically sized and formatted "
"given an NSString, UIFont, and desired padding.";
MGBoxLine *multiline = [MGBoxLine multilineWithText:blah font:nil padding:24];
[box2.topLines addObject:multiline];
[scroller drawBoxesWithSpeed:0.6];
You might like it for your project, or it might annoy you. It's one of those things.
scroller.delegate = self;
Own up to being a UIScrollViewDelegate
@interface ViewController : UIViewController <UIScrollViewDelegate>
- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView {
[(MGScrollView *)scrollView snapToNearestBox];
}
- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView
willDecelerate:(BOOL)decelerate {
if (!decelerate) {
[(MGScrollView *)scrollView snapToNearestBox];
}
}
UIImage *screenshot = [box1 screenshot:0]; // 0 = device scale, 1 = old school, 2 = retina
// tweet it
TWTweetComposeViewController *tweet = [[TWTweetComposeViewController alloc] init];
[tweet setInitialText:@"Check out my box!"];
[tweet addImage:screenshot];
tweet.completionHandler = ^(TWTweetComposeViewControllerResult result) {
[self dismissModalViewControllerAnimated:YES];
};
[self presentModalViewController:tweet animated:YES];
Some useful properties to avoid getting your hands too dirty.
// MGUnderlineNone, MGUnderlineTop or MGUnderlineBottom
line.underlineType = MGUnderlineTop;
For deciding whether content on the right or left takes precedence when space runs out. UILabels
will be shortened to fit. UIImages
and UIViews
will be removed from the centre outwards, if there's not enough room to fit them in.
// MGSidePrecedenceLeft or MGSidePrecedenceRight
line.sidePrecedence = MGSidePrecedenceRight;
line.font = [UIFont fontWithName:@"HelveticaNeue-Bold" size:16];
line.rightFont = [UIFont fontWithName:@"HelveticaNeue" size:16];
line.textColor = [UIColor colorWithWhite:0.8 alpha:1];
Fine tuning of lines with multiple elements.
line.linePadding = 3.0;
line.itemPadding = 2.0;