How is the Trello iPhone app developed?

I was wondering which libraries or frameworks use the Trello iphone app.

Is this a webapp with a js framework? if so, which one?

Or is it native? what framework for this is here?

I'm curious because I really like the user interface, and it easily searched the Internet.

+6
source share
1 answer

I am on the Trello team and have written an iPhone app. This is all native code, with the exception of viewing attachments, which is just a WebView. We use RestKit to communicate with our API and by caching data locally in CoreData. Otherwise, it's just a bunch of custom UIView and UIViewControllers.

+16
source

Source: https://habr.com/ru/post/916348/


All Articles