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

Popular posts from this blog

asp.net - repeatedly call AddImageUrl(url) to assemble pdf document -

java - Android recognize cell phone with keyboard or not? -

iphone - How would you achieve a LED Scrolling effect? -