Created
April 29, 2010 16:19
-
-
Save willbailey/383839 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
- (TTStyle*)imageThumbView:(UIControlState)state { | |
TTBoxStyle* boxStyle = [TTBoxStyle styleWithMargin:UIEdgeInsetsMake(4, 4, 4, 4) next:nil]; | |
TTStyle* imageStyle = [TTImageStyle styleWithImageURL:nil | |
defaultImage:nil | |
contentMode:UIViewContentModeScaleAspectFit | |
size:CGSizeZero next:boxStyle]; | |
TTPartStyle* imagePart = [TTPartStyle styleWithName:@"image" style:imageStyle next:nil]; | |
TTStyle* contentStyle = [TTContentStyle styleWithNext:imagePart]; | |
TTStyle* fillStyle = [TTSolidFillStyle styleWithColor:hexColor(0xcccccc) next:contentStyle]; | |
TTStyle* whiteBorder = [TTSolidBorderStyle styleWithColor:hexColor(0xffffff) width:2 next:fillStyle]; | |
TTStyle* shadowStyle = [TTShadowStyle styleWithColor:hexColor(0xcccccc) blur:4 offset:CGSizeMake(2, 2) next:whiteBorder]; | |
return shadowStyle; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment