I've downloaded an Download Manager from App Store and noticed that the app scrolls an UITabBar,like: When the user press a button the bar walks left and show other option to the user.Is that really possible and does Apple accept these type of customization in UITabBar?If it's possible how can i do that,please provide some sample code or reference.
相关问题
- Sorting 3 numbers without branching [closed]
- How to compile C++ code in GDB?
- CALayer - backgroundColor flipped?
- Why does const allow implicit conversion of refere
- thread_local variables initialization
相关文章
- Class layout in C++: Why are members sometimes ord
- How to mock methods return object with deleted cop
- Could I create “Call” button in HTML 5 IPhone appl
- Which is the best way to multiply a large and spar
- C++ default constructor does not initialize pointe
- Selecting only the first few characters in a strin
- What exactly do pointers store? (C++)
- Converting glm::lookat matrix to quaternion and ba
Yes, possible. but not using usual
UITabbar
. you have to create custom tabbar that behave the same. there are projects out there that you can use, save a lot of time of your work.infinitetabbar : A scrolling tab bar with space for infinite items
jsscrollabletabbar : JSScrollableTabBar is a simple, refined tab bar UI control that resembles the TabStrip found in the popular Three20 library but without any of the dependencies.
It is probably a custom-made control (a scroll view with a few child buttons). It's perfectly acceptable at the Store if you don't use any undocumented functions.
Yes, you can implement scrollable tabbar using
UITabBar
. Adobe writer maybe thought about using onlyUITabBar
, so he mentioned it can't be implemented, but if you useScrollView
andUITabBar
, it can be implemented. Puttabbar
onscrollview
,scrollview
size is 320,460 (it excludes status bar size). TabBar size is any size you want,scrollview
contentsize
must be equal totabbar
size.