Reputation: 6231
I'm developing my first iOS app in Xamarin.iOS, using MonoTouch.Dialog to create the graphical user interface via code with only minor (color only) customizations.
My question is: Will the user interface upgrade to the new iOS 7 look & feel for users using that iOS version or it will always look the same regardless?
I don't have an Apple Developer Account yet so I'm not able to install iOS 7 to try it in my iOS device and haven't found documentation regarding this particular topic in MonoTouch.Dialog website.
Upvotes: 3
Views: 804
Reputation: 1134
Now, when Xamarin.iOS 7.0 is out, when you set target SDK to 7.0, everything looks iOS7 like.
Upvotes: 3
Reputation: 43553
iOS agnostic answer: MonoTouch.Dialog uses UITableView
(and friends) and will behave like any other application, using UITableView
, would using the same iOS version.
At this time information about iOS 7 is only available under NDA so you unlikely to get any public answers. Apple private forums, where you can ask iOS 7 specific questions, requires you to have a developer account (which ensure you're covered by the same NDA as everyone else).
Upvotes: 3