我想將我的應用程序設置爲免費版本,並在應用程序購買時將其解鎖,以便獲得更多曝光度。免費版本應該是有限的,這是我的問題。免費版限制應用程序(應用程序內購買)
我的應用程序大量使用核心數據並創建免費版本,我只是想將每個tableview中顯示的所有記錄限制爲1行,或者如果有其他人有更好的想法,那些工作也是如此。
我一直在試圖設置我的numberOfRowsInSection返回1,但每次我添加一些東西,我得到一個範圍異常,因爲我正在使用fetchedResultsController。有任何想法嗎?
這是我的部分和行代碼:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return [[fetchedResultsController sections] count];}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
id <NSFetchedResultsSectionInfo> sectionInfo = [[fetchedResultsController sections] objectAtIndex:section];
return [sectionInfo numberOfObjects];}