iphone - How to display 4 rows in TTLauncherView -
is possible display 4 rows instead of default 3 rows in ttlauncherview?
you can modify row height category if use same number of rows:
@interface ttlauncherview(fourthrow) @end @implementation ttlauncherview(fourthrow) - (cgfloat)rowheight { int rows = 4; return round(_scrollview.height / rows); } @end
Comments
Post a Comment