Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the Cocoa Touch equivalent to NSArrayController?

Been starting to work with Core Data a bit, and while I've figured out how to use it in regular Cocoa applications, it seems it works a bit differently in Cocoa Touch. How do you bind entities to objects such as table cells in Cocoa Touch?

like image 216
Kaji Avatar asked Nov 28 '09 01:11

Kaji


Video Answer


1 Answers

Unfortunately, bindings are not supported in the iPhone OS. See this page in the Apple developer docs.

I believe this means that you can't use the NSArrayController in the iPhone OS.

like image 176
jergason Avatar answered Sep 28 '22 03:09

jergason