一般做收藏都是使用数据库或者归档,使用CoreData实现收藏功能就是没事时练一下,实现大概和数据库差不多.

首先创建一个工具类继承NSObject,在里面实现所需要的方法.

  工具类的.h文件:

typedef NS_ENUM(NSUInteger, SelectInEntities) {
    InEntities,
    NotInEntities,
    SelectError,
};

typedef NS_ENUM(NSUInteger, Entities) {
    NewsEntity,
    PostEntity,
    TypeEntity,
    ForumEntity,
};

@interface BFFCoreDataManager : NSObject

// 管理对象上下文(管理者)
@property (readonly, strong, nonatomic) NSManagedObjectContext *managedObjectContext;
// 管理对象模型(表结构)
@property (readonly, strong, nonatomic) NSManagedObjectModel *managedObjectModel;
// 持久化存储协调器(助理)
@property (readonly, strong, nonatomic) NSPersistentStoreCoordinator *persistentStoreCoordinator;
// 保存上下文(保存对数据的修改)
- (void)saveContext;
// 沙盒路径
- (NSURL *)applicationDocumentsDirectory;

//-(SelectInEntities)isInEntities:(Entities)entities
//                    Model:(id)model;

+(BFFCoreDataManager *)shareBFFCoreDataManager;

- (id)isInEntities:(Entities)entities model:(id)model;
+ (BOOL)has:(NSMutableDictionary *)dic arr:(NSArray *)array;
///地方分会
+ (BOOL)hass:(NSMutableDictionary *)dic arr:(NSArray *)array;
///推荐论坛
+ (BOOL)hasss:(BFFDiscussModel *)model arr:(NSArray *)array;
+ (BOOL)haspost:(BFFSelectModel *)model arr:(NSArray *)array;
+ (BOOL)state:(NSArray *)arr url:(NSString *)url;
+ (BOOL)states:(NSArray *)arr ids:(NSString *)ids;

- (id)myModel:(id)model;
@property (nonatomic, strong) BFFCoreDataManager *manager;

@end
    工具类的.m文件

@implementation BFFCoreDataManager
#pragma mark - Core Data stack

@synthesize managedObjectContext = _managedObjectContext;
@synthesize managedObjectModel = _managedObjectModel;
@synthesize persistentStoreCoordinator = _persistentStoreCoordinator;

+ (BFFCoreDataManager *)shareBFFCoreDataManager
{
    /// 单例不能释放
    static BFFCoreDataManager *manager = nil;
    // 保证线程安全, 该方法只走一次
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        manager = [BFFCoreDataManager new];
    });
    return manager;

}

// 获取到沙盒的Document路径

- (NSURL *)applicationDocumentsDirectory {
    // The directory the application uses to store the Core Data store file. This code uses a directory named "com.lanou3g.TheWorldCar" in the application's documents directory.
    return [[[NSFileManager defaultManager] URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask] lastObject];
}

- (NSManagedObjectModel *)managedObjectModel {
    // The managed object model for the application. It is a fatal error for the application not to be able to find and load its model.
    if (_managedObjectModel != nil) {
        return _managedObjectModel;
    }
    NSURL *modelURL = [[NSBundle mainBundle] URLForResource:@"TheWorldCar" withExtension:@"momd"];
    _managedObjectModel = [[NSManagedObjectModel alloc] initWithContentsOfURL:modelURL];
    return _managedObjectModel;
}

- (NSPersistentStoreCoordinator *)persistentStoreCoordinator {
    // The persistent store coordinator for the application. This implementation creates and returns a coordinator, having added the store for the application to it.
    if (_persistentStoreCoordinator != nil) {
        return _persistentStoreCoordinator;
    }
    
    // Create the coordinator and store
    
    _persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:[self managedObjectModel]];
    NSURL *storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"TheWorldCar.sqlite"];
    NSError *error = nil;
    NSString *failureReason = @"There was an error creating or loading the application's saved data.";
    
    NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithBool:YES], NSMigratePersistentStoresAutomaticallyOption, [NSNumber numberWithBool:YES], NSInferMappingModelAutomaticallyOption, nil];
    
    if (![_persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeURL options:options error:&error]) {
        // Report any error we got.
        NSMutableDictionary *dict = [NSMutableDictionary dictionary];
        dict[NSLocalizedDescriptionKey] = @"Failed to initialize the application's saved data";
        dict[NSLocalizedFailureReasonErrorKey] = failureReason;
        dict[NSUnderlyingErrorKey] = error;
        error = [NSError errorWithDomain:@"YOUR_ERROR_DOMAIN" code:9999 userInfo:dict];
        // Replace this with code to handle the error appropriately.
        // abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
        NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
        abort();
    }
    
    return _persistentStoreCoordinator;
}

- (NSManagedObjectContext *)managedObjectContext {
    // Returns the managed object context for the application (which is already bound to the persistent store coordinator for the application.)
    if (_managedObjectContext != nil) {
        return _managedObjectContext;
    }
    
    NSPersistentStoreCoordinator *coordinator = [self persistentStoreCoordinator];
    if (!coordinator) {
        return nil;
    }
    _managedObjectContext = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSMainQueueConcurrencyType];
    [_managedObjectContext setPersistentStoreCoordinator:coordinator];
    return _managedObjectContext;
}

#pragma mark - Core Data Saving support

- (void)saveContext {
    NSManagedObjectContext *managedObjectContext = self.managedObjectContext;
    if (managedObjectContext != nil) {
        NSError *error = nil;
        if ([managedObjectContext hasChanges] && ![managedObjectContext save:&error]) {
            // Replace this implementation with code to handle the error appropriately.
            // abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development.
            NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
            abort();
        }
    }
}

- (id)myModel:(id)model{
    NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
    NSEntityDescription *entity = [NSEntityDescription entityForName:@"Type" inManagedObjectContext:self.managedObjectContext];
    [fetchRequest setEntity:entity];
    NSError *error = nil;
    NSArray *fetchedObjects = [self.managedObjectContext executeFetchRequest:fetchRequest error:&error];
    if (fetchedObjects == nil) {
        NSLog(@"%@", error);
    }
    BFFCollectModel *newsModel = model;
    for (Type *type in fetchedObjects) {
        if ([type.name isEqualToString:newsModel.name]) {
            return type;
        } else {
            return nil;
        }
    }

return nil;
}

// 判断是否在数据库中
- (id)isInEntities:(Entities)entities model:(id)model
{
    switch (entities) {
        case NewsEntity:
        {
            NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
            NSEntityDescription *entity = [NSEntityDescription entityForName:@"News" inManagedObjectContext:self.managedObjectContext];
            [fetchRequest setEntity:entity];
            NSError *error = nil;
            NSArray *fetchedObjects = [self.managedObjectContext executeFetchRequest:fetchRequest error:&error];
            if (fetchedObjects == nil) {
                NSLog(@"%@", error);
            }
            BFFNewsModel *newsModel = model;
            for (News *news in fetchedObjects) {
                if ([news.newsLink isEqualToString:newsModel.newsLink]) {
                    return news;
                }
            }
            return nil;
        }
            break;
        case PostEntity:
        {
            NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
            NSEntityDescription *entity = [NSEntityDescription entityForName:@"Post" inManagedObjectContext:self.managedObjectContext];
            [fetchRequest setEntity:entity];
            NSError *error = nil;
            NSArray *fetchedObjects = [self.managedObjectContext executeFetchRequest:fetchRequest error:&error];
            if (fetchedObjects == nil) {
                NSLog(@"%@", error);
            }
            BFFHotModel *hot = model;
            for (Post *post in fetchedObjects) {
                if ([post.postLink isEqualToString:hot.postLink]) {
                    return post;
                }
            }
            return nil;
        }
            break;
        case TypeEntity:
        {
           
        }
            break;
        case ForumEntity:
        {
            NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
            NSEntityDescription *entity = [NSEntityDescription entityForName:@"Line" inManagedObjectContext:self.managedObjectContext];
            [fetchRequest setEntity:entity];
            NSError *error = nil;
            NSArray *fetchedObjects = [self.managedObjectContext executeFetchRequest:fetchRequest error:&error];
            if (fetchedObjects == nil) {
                NSLog(@"%@", error);
            }
            BFFCarDetailModel *carDetail = model;
            for (Line *line in fetchedObjects) {
                if ([line.seriesId isEqualToString:[NSString stringWithFormat:@"%@", carDetail.seriesId]]) {
                    return line;
                }
            }
            return nil;
        }

break;
        default:
            break;
    }
    return nil;
}
///爱车俱乐部.人车生活
+ (BOOL)has:(NSMutableDictionary *)dic arr:(NSArray *)array{
    NSNumber *num = dic[@"forumId"];
    for (Forum *forum in array) {
        if ([forum.postId isEqualToString:num.description]) {
            return YES;
        }
    }
    return NO;
}
///地方分会
+ (BOOL)hass:(NSMutableDictionary *)dic arr:(NSArray *)array{
    NSNumber *num = dic[@"id"];
    for (Forum *forum in array) {
        if ([forum.postId isEqualToString:num.description]) {
            return YES;
        }
    }
    return NO;
}
///论坛推荐
+ (BOOL)hasss:(BFFDiscussModel *)model arr:(NSArray *)array{
    for (Forum *forum in array) {
        if ([forum.postId isEqualToString:model.forumId.description]) {
            return YES;
        }
    }
     return NO;
}
///帖子收藏
+ (BOOL)haspost:(BFFSelectModel *)model arr:(NSArray *)array{
    for (Post *post in array) {
        if ([post.postLink isEqualToString:model.postLink]) {
            return YES;
        }
    }
    return NO;
}
///改变帖子收藏按钮图标
+ (BOOL)state:(NSArray *)arr url:(NSString *)url{
    for (Post *post in arr) {
        if ([post.postLink isEqualToString:url]) {
            return YES;
        }
    }
    return NO;
}
///改变论坛收藏按钮图标
+ (BOOL)states:(NSArray *)arr ids:(NSString *)ids{
    for (Forum *forum in arr) {
        if ([forum.postId.description isEqualToString:ids]) {
            return YES;
        }
    }
    return NO;
}

//-(SelectInEntities)isInEntities:(Entities)entities
//                          Model:(id)model
//{
//    switch (entities) {
//        case NewsEntity:
//        {
//            NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
//            NSEntityDescription *entity = [NSEntityDescription entityForName:@"News" inManagedObjectContext:self.managedObjectContext];
//            [fetchRequest setEntity:entity];
//            NSError *error = nil;
//            NSArray *fetchedObjects = [self.managedObjectContext executeFetchRequest:fetchRequest error:&error];
//            if (fetchedObjects == nil) {
//                NSLog(@"%@", error);
//            }
//            BFFNewsModel *newsModel = model;
//
//            for (News *news in fetchedObjects) {
//
//                if ([news.newsLink isEqualToString:newsModel.newsLink]) {
//                    return InEntities;
//                } else {
//                    return NotInEntities;
//                }
//
//            }
//
//        }
//            break;
//            case PostEntity:
//        {
//
//        }
//            break;
//            case LineEntity:
//        {
//
//        }
//            break;
//            case ForumEntity:
//        {
//
//        }
//            break;
//        default:
//            break;
//    }
//    return SelectError;
//}
@end
  接下来在收藏页面创建一个Button实现收藏

- (void)collectionBut:(id)sender{

BFFCollectModel *model = self.tempModel;
    if ([self.manager myModel:model] == nil) {
       Type *type = [NSEntityDescription insertNewObjectForEntityForName:@"Type" inManagedObjectContext:self.manager.managedObjectContext];
        type.name = model.name;
        type.priceRange = model.priceRange;
        type.photo = model.photo;
        type.uid = [NSString stringWithFormat:@"%@", model.uid];
        [self.manager saveContext];
        
        self.collectLabel.text = @"已经收藏";
        self.collectLabel.hidden = NO;
        dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
            self.collectLabel.hidden = YES;
        });
        
        
    } else {
        [self.manager.managedObjectContext deleteObject:[self.manager myModel:model]];
        [self.manager saveContext];
        self.collectLabel.text = @"已取消收藏";
        self.collectLabel.hidden = NO;
        dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
            self.collectLabel.hidden = YES;
        });
    }
}
在我的收藏页面把数据取出

- (void)createLineData
{
    self.typeArr = [NSMutableArray array];
    NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
    NSEntityDescription *entity = [NSEntityDescription entityForName:@"Type" inManagedObjectContext:self.manager.managedObjectContext];
    [fetchRequest setEntity:entity];
    NSError *error = nil;
    NSArray *fetchedObjects = [self.manager.managedObjectContext executeFetchRequest:fetchRequest error:&error];
    
    if (fetchedObjects == nil) {
        NSLog(@"%@", error);
    }
    [self.typeArr addObjectsFromArray:fetchedObjects];
    [self.tableView reloadData];
    
}
这些数据都铺在了tableView上接下来实现删除的操作

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (editingStyle == UITableViewCellEditingStyleDelete) {
        if (self.titleSegment.selectedSegmentIndex == 0) {
            News *news = self.newsArr[indexPath.row];
            [self.manager.managedObjectContext deleteObject:news];
            [self.manager saveContext];
            [self.newsArr removeObjectAtIndex:indexPath.row];
            [self.tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationLeft];
        }else if (self.titleSegment.selectedSegmentIndex == 1){
            Post *post = self.postArr[indexPath.row];
            [self.manager.managedObjectContext deleteObject:post];
            [self.manager saveContext];
            [self.postArr removeObjectAtIndex:indexPath.row];
             [self.tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationLeft];
        }else if (self.titleSegment.selectedSegmentIndex == 2){
            Forum *forum = self.forumArr[indexPath.row];
            [self.manager.managedObjectContext deleteObject:forum];
            [self.manager saveContext];
            [self.forumArr removeObjectAtIndex:indexPath.row];
            [self.tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationLeft];

}else{
        
            Type *type = self.typeArr[indexPath.row];
            [self.manager.managedObjectContext deleteObject:type];
             [self.manager saveContext];
            [self.typeArr removeObjectAtIndex:indexPath.row];
            [self.tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationLeft];
        
        }
    }
    [self.tableView reloadData];
}
      这些就是实现收藏的过程

iOS使用CoreData实现收藏功能的更多相关文章

  1. 改进iOS客户端的升级提醒功能

    改进iOS客户端的升级提醒功能 功能设计 先申明一下,我是码农,不是一个产品经理,但我觉得现有市面上的很多 App,设计的 "升级提示功能" 都不太友好.在此分享一下我的想法,欢迎 ...

  2. Yii中Ajax的使用,如收藏功能

    view中 <?php $cs=Yii::app()->clientScript; $cs->registerScriptFile('http://ajax.googleapis.c ...

  3. iOS 用UISearchDisplayController实现查找功能

    UISearchDisplayController是iOS中用于处理搜索功能的控制器,此控制器需要和UISearchBar结合使用 示例代码如下: // // WKRootViewController ...

  4. iOS Swift WisdomScanKit图片浏览器功能SDK

    iOS Swift WisdomScanKit图片浏览器功能SDK使用 一:简介      WisdomScanKit 由 Swift4.2版编写,完全兼容OC项目调用. WisdomScanKit的 ...

  5. iOS蓝牙BLE4.0通信功能

    概述 iOS蓝牙BLE4.0通信功能,最近刚学的苹果,为了实现蓝牙门锁的项目,找了一天学习了下蓝牙的原理,亲手测试了一次蓝牙的通信功能,结果成功了,那么就把我学习的东西分享一下. 详细 代码下载:ht ...

  6. 【Android】3.21 示例21—兴趣点收藏功能

    分类:C#.Android.VS2015.百度地图应用: 创建日期:2016-02-04 简介:介绍如何创建.管理本地收藏的兴趣点数据 详述: (1)新建本地点收藏: (2)查看已收藏本地点: (3) ...

  7. mxonline实战9,我要学习功能块,机构详情展示,收藏功能

    对应github地址:第9天   一. 实现我要学习功能

  8. 18、Django实战第18天:课程机构收藏功能

    这里点击"收藏"也是ajax异步操作,我在operation.model.py中创建了一个用户收藏表,其中fav_id字段,如果我们收藏的是课程,那就是课程id,如果收藏的是课程机 ...

  9. ios开发视频播放后台下载功能实现 :1,ios播放视频 ,包含基于AVPlayer播放器,2,实现下载,iOS后台下载(多任务同时下载,单任务下载,下载进度,下载百分比,文件大小,下载状态)(真机调试功能正常)

    ABBPlayerKit ios开发视频播放后台下载功能实现 : 代码下载地址:https://github.com/niexiaobo/ABBPlayerKit github资料学习和下载地址:ht ...

随机推荐

  1. VS2010 VC Project的default Include设置

    在IDE中,打开View->Other Windows->Property Manager.展开树形后,你会发现一个名为“Microsoft.Cpp.Win32.user”的项目(如下图) ...

  2. 关于控制下拉框select只读的js控制

    文本框有readonly属性,直接设置:下拉框没有readonly属性,也不能通过其他属性进行只读的设置,下拉框只有disabled属性,但是这个属性设成true之后,值就获取不到了: 我在网上搜了一 ...

  3. Spring MVC框架下 从后台读取数据库并显示在前台页面【笔记自用 不推荐作为参考】

    1.书写jsp页面  people.jsp 1.设计显示格式以及内容显示 2.设计显示内容的范围 2.书写entity实体类 PeopleFormMap.java 书写传入的参数主要包括 要引用的数据 ...

  4. Gradle体验/第一篇:下装、安装、配置、体验

    http://jingyan.baidu.com/article/4d58d541167bc69dd4e9c009.html

  5. bzoj1578 [Usaco2009 Feb]Stock Market 股票市场

    传送门:http://www.lydsy.com/JudgeOnline/problem.php?id=1578 [题解] 由于连续买相当于每天买,第二天卖,然后再买.所以每天最后钱尽量多一定是最优的 ...

  6. AtCoder Regular Contest 082 E

    Problem Statement You are given N points (xi,yi) located on a two-dimensional plane. Consider a subs ...

  7. vnc无法显示桌面

    转载   以下是我的正确配置,解决上述问题,附带说明:  修改后的~/.vnc/xstartup #!/bin/sh # Uncomment the following two lines for n ...

  8. Linux下安装mantis配置指南【转】

    转自:http://blog.csdn.net/xabc3000/article/details/6858229 目录(?)[-] Linux下安装mantis配置指南 配置Linux下的Apache ...

  9. camera驱动框架分析(中)

    camera host的驱动 下面开始分析camera host吧,如果仅仅是想知道camera sensor驱动怎么写,而不想知道内部具体怎么个调用流程,怎么个架构设计,那可以跳过该部分,直接去看i ...

  10. Linux下进程描述(1)—进程控制块【转】

    转自:http://www.cnblogs.com/33debug/p/6705391.html 进程概念介绍 进程是操作系统对运行程序的一种抽象. • 一个正在执行的程序: • 一个正在计算机上执行 ...