in my app i made a TTLauncherView
which has 9 icons. Now client want that these all 9 icon will not swipe and will look fixed at swiping because they are not going to vary.
I can do this simply replacing TTLaunchView
with 9 static buttons but i dont want to spoil the current code.
Any solution?
done :-)
Go to your class where you made object of
TTLauncherView
. Now right click onTTLauncherView
and select Jump To definition (or just hold the command key and click onTTLauncherView
for iOS 5). This will bring you toTTLauncherView.m
file (class). Now find_scrollView.alwaysBounceHosrizontal = YES;
Make thisYES
toNO
, Thats it :-)donno how i forgot that
TTLauncherView
is a subclass ofUIScrollView
. ;-)