xamarin.ios - How to mimic Android Bar on iOS? -
my designer created layout:
how can mimic on ios? tried creating segmented control didn't work because can't customized after ios7. @ moment i'm thinking uipagecontrol custom dots explained here: customize dot image of uipagecontrol @ index 0 of uipagecontrol
my problem concept. segmented controls said used flatten/filter results according ios human guidelines while uipagecontrol has different pages...
is best approach? if so, can make android tab bar?
- segmented control custom image
- uipagecontrol custom image
- uitabbar on top (read many bad things approach)
- something else
if uipagecontrol indeed best/correct/possible approach how can make close image? , move top?
thanks!
short answer: don't that. you're trying implement android controls on ios. leads user confusion , app doesn't feel native app.
instead, have designer create native app design both platforms.
it looks me closest analog you're trying tab bar , tab bar controller (uitabbarcontroller
).
edit:
if must implement ui on ios, might have roll own. you'd create new custom parent view controller child view controller swap out, , custom control triggers swapping. conceptually lot tab bar controller.
you set using container view , embed segue (the embedded view controller starting child view controller) , use built-in support managing child view controllers swap out child view controller when user taps on control. i've done sort of thing before. isn't hard, , pretty documented.
Comments
Post a Comment