MonoTouch.Dialog equivalent for Objective C?

Is there an equivalent of MonoTouch.Dialog , but for native Objective-C applications? MonoTouch.Dialog automatically creates UITableView style interfaces based on model metadata or through a simple API.

I experimented with building applications with MonoTouch, but I found that the application launch time is currently unacceptable, so I'm trying to get to the correct True Apple path.

I know about InAppSettingsKit, but it seems to be specifically for replicating the Settings.app interface, while MonoTouch.Dialog can generate much more flexible interfaces.

+6
iphone cocoa-touch
source share
1 answer

Yes, there is an alternative QuickDialog call available. It is very stable and actively developing. I used it in projects and highly recommend it.

You can clone the code repository from Github here https://github.com/escoz/QuickDialog

+6
source share

All Articles