`

CoreData实例分析学习2

阅读更多
在我们分析了程序主代理文件(AppDelegate)之后,我们先来看看一对自动生成的文件Event.h/.m

@interface Event : NSManagedObject  {}
@property (nonatomic, retain) NSDate *creationDate;
@property (nonatomic, retain) NSNumber *latitude;
@property (nonatomic, retain) NSNumber *longitude;
@end

#import "Event.h"
@implementation Event
@dynamic creationDate;
@dynamic latitude;
@dynamic longitude;
@end

从上面我们能看出来,一个实体Event也就会被生成一个NSManagedObject(被管理对象),然后任何accessor和getter 都是被动态生成的,我们其实完全不用操任何的心,只需要在xcdatamodel文件里面配置后,点击添加文件,添加NSManagedObject文件,就会看到自动感知的类对象,然后生成就可以了。

下面是根视图控制器,是一个列表视图(UITableViewController)

#import <CoreLocation/CoreLocation.h>
@interface RootViewController : UITableViewController <CLLocationManagerDelegate> {
//看到是UITableViewController的子类,由于需要使用Core Location,
//所以在后面履行其protocal
    NSMutableArray *eventsArray;
NSManagedObjectContext *managedObjectContext;
//这个被管理对象内容器就是我们真正对Core Data数据的操作对象
    CLLocationManager *locationManager; //用来得到地理位置的Core Location对象
    UIBarButtonItem *addButton; //右上角的添加键
}
@property (nonatomic, retain) NSMutableArray *eventsArray;
@property (nonatomic, retain) NSManagedObjectContext *managedObjectContext;
@property (nonatomic, retain) CLLocationManager *locationManager;
@property (nonatomic, retain) UIBarButtonItem *addButton;
- (void)addEvent;
@end

#import "RootViewController.h"
#import "LocationsAppDelegate.h"
#import "Event.h"
@implementation RootViewController
@synthesize eventsArray, managedObjectContext, addButton, locationManager;

- (void)viewDidLoad {
    [super viewDidLoad];
    self.title = @"Locations"; //设置列表视图的标题
    self.navigationItem.leftBarButtonItem = self.editButtonItem; //导航栏左边的编辑按钮

    addButton = [[UIBarButtonItem alloc]
                initWithBarButtonSystemItem:UIBarButtonSystemItemAdd
                target:self
                action:@selector(addEvent)]; //初始化添加按钮,
addButton.enabled = NO; //在Core Location初始化之前将其关闭
    self.navigationItem.rightBarButtonItem = addButton;
    //把这个添加按钮添加到导航栏右侧

// 启动CLocation
[[self locationManager] startUpdatingLocation];

        //初始化一个“获取请求”到我们的实体“Event”
NSFetchRequest *request = [[NSFetchRequest alloc] init];
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Event"
inManagedObjectContext:managedObjectContext];
[request setEntity:entity];

// 将时间以建立时间排序,最新的在最上
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"creationDate" ascending:NO];
NSArray *sortDescriptors = [[NSArray alloc] initWithObjects:sortDescriptor, nil];
[request setSortDescriptors:sortDescriptors];
[sortDescriptor release];
[sortDescriptors release];

// 执行“获取”操作,得到一个“可变数组”的拷贝
NSError *error = nil;
NSMutableArray *mutableFetchResults = [[managedObjectContext
executeFetchRequest:request
error:&error] mutableCopy];
if (mutableFetchResults == nil) {
//如果结果为空,在这作错误响应
}

// 将得到的本地数组赋值到本类的全局数组,然后清理无用的对象
[self setEventsArray:mutableFetchResults];
[mutableFetchResults release];
[request release];
}

- (void)viewDidUnload {
// 当视图被卸载后,将以下指针置空
self.eventsArray = nil;
self.locationManager = nil;
self.addButton = nil;
}

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
// 只有一个章节
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
// 在数组里面有多少个对象,在列表视图就有多少行
    return [eventsArray count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

// 一个“日期格式化器”(凑合明白就好...)用来以特定的格式创建得到的日期
    static NSDateFormatter *dateFormatter = nil;
if (dateFormatter == nil) {
dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setTimeStyle:NSDateFormatterMediumStyle];
[dateFormatter setDateStyle:NSDateFormatterMediumStyle];
}

static NSNumberFormatter *numberFormatter = nil;
if (numberFormatter == nil) {
numberFormatter = [[NSNumberFormatter alloc] init];
[numberFormatter setNumberStyle:NSNumberFormatterDecimalStyle];
[numberFormatter setMaximumFractionDigits:3];
}

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:CellIdentifier] autorelease];
UITableViewCellStyleSubtitle;
    }

// 从数组中得到这个Event对象
Event *event = (Event *)[eventsArray objectAtIndex:indexPath.row];

cell.textLabel.text = [dateFormatter stringFromDate:[event creationDate]];

NSString *string = [NSString stringWithFormat:@"%@, %@",
[numberFormatter stringFromNumber:[event latitude]],
[numberFormatter stringFromNumber:[event longitude]]];
    cell.detailTextLabel.text = string;

return cell;
}

- (void)tableView:(UITableView *)tableView
commitEditingStyle:(UITableViewCellEditingStyle)editingStyle
forRowAtIndexPath:(NSIndexPath *)indexPath
{

    if (editingStyle == UITableViewCellEditingStyleDelete) {

        // 删除被惯例对象在索引路径(index path)
NSManagedObject *eventToDelete = [eventsArray objectAtIndex:indexPath.row];
[managedObjectContext deleteObject:eventToDelete];

// 更新数组和列表视图
        [eventsArray removeObjectAtIndex:indexPath.row];
        [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES];

// 提交更改到Core Data
NSError *error;
if (![managedObjectContext save:&error]) {
// Handle the error.
}
    }
}

- (void)addEvent {
//如果得不到位置,就返回.
CLLocation *location = [locationManager location];
if (!location) {
return; }

//建立一个Event实体对象
Event *event = (Event *)[NSEntityDescription
insertNewObjectForEntityForName:@"Event"
inManagedObjectContext:managedObjectContext];

//得到经纬度,然后赋值到event对象去
CLLocationCoordinate2D coordinate = [location coordinate];
[event setLatitude:[NSNumber numberWithDouble:coordinate.latitude]];
[event setLongitude:[NSNumber numberWithDouble:coordinate.longitude]];

// 实例里面并没有使用CL的时间标签,因为在模拟器中会是一样的
// [event setCreationDate:[location timestamp]];
[event setCreationDate:[NSDate date]];
//所以现在使用的是现在的时间,而不是得到位置的时候的时间

// 保存更改
NSError *error;
if (![managedObjectContext save:&error]) {
// Handle the error.
}

// 将新Event放到最上面,所以添加到0的位置
// 然后滚动列表视图到最上面,如果没有那么多的数据是看不出来区别的
[eventsArray insertObject:event atIndex:0];
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:indexPath]
withRowAnimation:UITableViewRowAnimationFade];
[self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]
atScrollPosition:UITableViewScrollPositionTop animated:YES];
}

- (CLLocationManager *)locationManager {
//自定义的CLocation的getter,方便初始化
    if (locationManager != nil) {
return locationManager;
}
//初始化CL对象,然后设置精准度,然后将代理对象设为本地
locationManager = [[CLLocationManager alloc] init];
[locationManager setDesiredAccuracy:kCLLocationAccuracyNearestTenMeters];
[locationManager setDelegate:self];

return locationManager;
}
//CLocation的一个代理方法,如果成功就开启右侧添加按钮
- (void)locationManager:(CLLocationManager *)manager
    didUpdateToLocation:(CLLocation *)newLocation
           fromLocation:(CLLocation *)oldLocation {
    addButton.enabled = YES;
}
//CLocation的一个代理方法,如果失败了就关闭(disable)右侧添加按钮
- (void)locationManager:(CLLocationManager *)manager
       didFailWithError:(NSError *)error {
    addButton.enabled = NO;
}

- (void)dealloc {
//释放对象
[managedObjectContext release];
[eventsArray release];
    [locationManager release];
    [addButton release];
    [super dealloc];
}
@end

从上面的源代码,我们可以看出,
1,在这里数据并不是每次都由NSManagedContext对象得到,而是由一个数组得出。
2,数组是一个可变数组,由第一次载入的视图的时候从NSManagedContext中得到
3,从NSManagedContext对象中得到数据需要使用NSFetchRequest来初始化一个“获取”
4,每次获得新的数据的时候,同时保存到数组和NSManagedContext中,添加后需要对更改进行提交
分享到:
评论

相关推荐

    coredata的增删改查

    ### 2. Core Data CRUD操作 #### 2.1 创建 (Create) 创建新的Managed Object主要通过`NSManagedObjectContext`的`insertNewObjectForEntityForName:`方法实现。例如,如果有一个名为`User`的实体,我们可以这样...

    Pro Core Data for iOS.pdf

    **内存管理**:讲解如何分析和控制内存使用,如设置缓存失效、唯一化和分析性能结果。 ### Chapter 8: Versioning and Migrating Data **数据版本管理**:介绍如何进行数据版本控制,包括轻量级迁移、创建映射模型...

    TextCoreData数据库源码_ios源码

    总结,TextCoreData项目为iOS开发者提供了一个学习和实践CoreData的实例。通过深入研究这个源码,我们可以更好地理解CoreData的工作原理,提升在iOS应用中实现数据持久化的技能。同时,了解并掌握最佳实践,有助于...

    DetetiveInv-CoreData

    本文将通过分析一个名为"DetetiveInv-CoreData"的示例项目,深入探讨Swift在Core Data框架中的应用,从而揭示如何在实际开发中实现高效的数据持久化。 首先,让我们探究一下Core Data的本质。Core Data是一个对象图...

    IOS 学习笔记补充1

    4. **数据持久化**: iOS中常见的数据存储方式有NSUserDefaults、SQLite数据库、CoreData等,理解它们的适用场景和使用方法至关重要。 5. **网络编程**: 使用URLSession进行HTTP请求,理解异步编程和回调函数,以及...

    iphone开发基础实例

    除此之外,你还将学习到数据持久化,包括使用UserDefaults存储轻量级数据,CoreData进行复杂数据管理,以及SQLite数据库的集成。网络请求是许多应用必不可少的部分,你将接触URLSession或第三方库如Alamofire,用于...

    CoreDatademo

    通过这个`CoreDatademo`项目,你可以深入学习`CoreData`的各个方面,包括数据模型设计、数据操作、性能优化等,这对于开发Apple平台的应用程序来说是非常重要的技能。如果在学习过程中遇到问题,可以参考配套的博客...

    iOS实例开发源码——drewish-Pipes-f5826b2.zip

    《iOS实例开发源码——drewish-Pipes-f5826b2.zip》 这个压缩包中的内容属于iOS应用开发领域,特别是针对一个名为“Pipes”的项目。"drewish"可能是开发者或者项目的别名,而"f5826b2"则可能是一个特定的版本标识,...

    iOS实例开发源码——JohnnySheng-SpaceGame-c2342f0.zip

    通过分析"JohnnySheng-SpaceGame-c2342f0"源码,我们可以学习到如何将这些概念实际应用到项目中,理解游戏开发的全过程。源码中的各个文件和目录,如视图控制器、模型对象、资源文件等,都对应着上述知识点的具体...

    IOS源码应用Demo-twitter开放api实例大全.zip

    "IOS源码应用Demo-twitter开放api实例大全.zip"这个压缩包提供了一系列的示例代码,适合iOS开发者学习和参考。 首先,我们要了解Twitter开放API。Twitter API允许开发者通过HTTP请求获取和发送Twitter平台上的数据...

    iOS实例开发源码——hollance-SimonSings-0b58a4c.zip

    它包含了源代码和其他相关资源,为iOS开发者提供了一个学习和参考的实例。在分析这个项目之前,我们先来了解一下iOS应用开发的基础知识。 iOS应用开发主要使用Swift或Objective-C编程语言,其中Swift是苹果在2014年...

    nstruments 用户指南

    此外,指南还提供了一些分析技术,例如使用Sampler Instrument和Allocations Instrument工具分析数据、查找内存泄露,以及分析CoreData应用程序的技术。 第六章是关于如何保存和导入跟踪数据。用户可以学习到如何...

    PumpkinFace.zipIOS应用例子源码下载

    总的来说," PumpkinFace.zip "不仅是iOS应用开发的一个实例,也是学习和研究iOS开发技术的重要资料。通过深入研究源码,无论是初学者还是有经验的开发者,都能从中受益,提升自己的开发技能和项目实施能力。无论你...

    IOS应用源码——横条显示滚动的股票动态.zip

    在iOS开发中,创建一个能够显示滚动股票动态的应用是一个常见的需求。这个名为“IOS应用源码——横条显示...通过对源码的深入分析和学习,开发者可以提升自己的iOS开发技能,尤其是在UI设计、数据处理和网络编程方面。

    SnowFall.zipIOS应用例子源码下载

    通过阅读和分析这些代码,你可以了解如何将理论知识转化为实际操作,这对于巩固学习成果至关重要。 对于个人开发者,SnowFall.zip 提供了一个实际应用案例,可以用来实践和提升自己的编程技巧。例如,你可能会遇到...

    简单写字板.zipIOS应用例子源码下载

    2. 个人学习研究:对于自学者而言,这个源码提供了直观的代码实例,有助于他们在没有导师指导的情况下自我探索iOS开发。通过模仿和修改源码,个人开发者可以提升自己的编程技能,并且理解如何将理论知识应用于实际...

    IOS 20个实用例子.zip

    -- IOS之分析网易新闻存储数据 CoreData的使用 增删改查 -- IOS二维码扫描Demo -- 18个 ios 项目源代码 -- iOS通讯录联系人列表较完整(中文排序) -- 仿网易新闻客户端(ios) -- UICollectionView Demo -- iOS 实现...

Global site tag (gtag.js) - Google Analytics