본문 바로가기

Programming/iPhone, Xcode

NSFetchedRequest

NSFetchedRequest, NSFetchedResultsController, NSPredicate
  • NSFetchedRequest can take an NSPredicate to filter data based on logical conditions. (NSFetchedRequest 는 논리적인 상태에 기반하여 데이터를 filtering 하기 위해서 NSPredicate 를 사용할 수 있다)
  • You can express NSPredicate conditions in code or using Xcode's predicate builder. (NSPredicate 는 코드로 혹은, Xcode 의 predicate builder 를 사용하여 작성할 수 있다)
  • NSFetchedResultsController provides highly efficient memory management and change monitoring for UITableViews (NSFetchedResultsController 는 UITableView 에 관해서 매우 효율적인 메모리 관리와 monitoring 을 변경하는 것을 제공한다)
  • Be careful about what you put in viewWillAppear, as it will be called every time your view is shown. (viewWillAppear 함수에 특정 코드를 작성하는 것에 대해서 신중해야 한다. 왜냐하면, viewWillAppear 는 view 가 매번 보일때마다 호출이 되기 때문이다)


'Programming > iPhone, Xcode' 카테고리의 다른 글

iOS - Core Location  (0) 2012.05.16
Persistent Obj Store  (0) 2012.05.02
Managed Object Context  (0) 2012.04.24
The Data Model  (0) 2012.04.12
iPad HIG, Universal App, Device Checking, Split View Controller  (0) 2012.03.23