Skip to content

Instantly share code, notes, and snippets.

@C4Examples
Created April 23, 2013 09:09
Show Gist options
  • Save C4Examples/5442024 to your computer and use it in GitHub Desktop.
Save C4Examples/5442024 to your computer and use it in GitHub Desktop.
C4UIElements scrollViewImage
//
// C4WorkSpace.m
// Examples
//
// Created by Travis Kirton.
//
#import "C4WorkSpace.h"
@implementation C4WorkSpace {
C4ScrollView *scrollview;
C4Image *table;
}
-(void)setup {
table = [C4Image imageNamed:@"C4Table"];
scrollview = [C4ScrollView scrollView:CGRectMake(0, 0, 320, 240)];
scrollview.contentSize = table.frame.size;
scrollview.borderColor = C4GREY;
scrollview.borderWidth = 1.0f;
scrollview.center = self.canvas.center;
[scrollview addImage:table];
[self.canvas addSubview:scrollview];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment