Skip to content

Instantly share code, notes, and snippets.

@armandocanals
Last active August 29, 2015 13:59
Show Gist options
  • Save armandocanals/e3f53fa80a55354e66c1 to your computer and use it in GitHub Desktop.
Save armandocanals/e3f53fa80a55354e66c1 to your computer and use it in GitHub Desktop.
Slide Ruler UIView
UIScrollView* timer = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 120, 700, 60)];
timer.backgroundColor = [UIColor whiteColor];
timer.delegate = self;
timer.scrollEnabled = YES;
timer.contentSize = CGSizeMake(_createView.frame.size.width+700, 60);
[self addTopBorder:timer];
for (int i = 55; i > 0; i--) {
UIView *tine = [[UIView alloc] initWithFrame:CGRectMake((i*12), 1, 1, 7)];
UIView *subtine = [[UIView alloc] initWithFrame:CGRectMake((i*12), 53, 1, 7)];
tine.backgroundColor = [UIColor colorWithHex:@"f2f2f2" andAlpha:1.0f];
subtine.backgroundColor = [UIColor colorWithHex:@"f2f2f2" andAlpha:1.0f];
if (i % 10 == 0) {
UILabel* numberView = [[UILabel alloc] initWithFrame:CGRectMake(-8, 20, 20, 20)];
numberView.text = [[NSString alloc] initWithFormat:@"%d", i];
[numberView setFont:[UIFont boldSystemFontOfSize:16]];
[tine setBackgroundColor:[UIColor colorWithHex:paletteBlue andAlpha:1.0f]];
[subtine setBackgroundColor:[UIColor colorWithHex:paletteBlue andAlpha:1.0f]];
[tine addSubview:numberView];
}
[timer setShowsHorizontalScrollIndicator:NO];
[timer addSubview:tine];
[timer addSubview:subtine];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment