Oc 資料庫CoreData
DataBase.h
#import <Foundation/Foundation.h>
#import "Entity+CoreDataClass.h"
#import "AppDelegate.h"
@interface DataBase : NSObject
+(instancetype)showdata;
-(void)addname:(NSDictionary *)dic;
-(void)changedata;
-(void)deletdata:(Entity *)theData;
-(NSMutableArray*)showAllArray;
DataBase.m
#import "DataBase.h"
static DataBase *thedatabase;
@implementation DataBase
+(instancetype)showdata{
if (!thedatabase) {
thedatabase = [[DataBase alloc]init];
}
return thedatabase;
}
-(void)addname:(NSDictionary *)dic{
AppDelegate *app =(AppDelegate *)[UIApplication sharedApplication].delegate;
Entity *person = [NSEntityDescription insertNewObjectForEntityForName:@"Entity" inManagedObjectContext:app.persistentContainer.viewContext];
person.personName = dic[@"personName"];
person.personAge = dic[@"personAge"];
[app saveContext];
}
-(void)changedata{
AppDelegate *app =(AppDelegate *)[UIApplication sharedApplication].delegate;
[app saveContext];
}
-(void)deletdata:(Entity *)theData{
AppDelegate *app =(AppDelegate *)[UIApplication sharedApplication].delegate;
[app.persistentContainer.viewContext deleteObject:theData];
[app saveContext];
}
-(NSMutableArray*)showAllArray{
AppDelegate *app =(AppDelegate *)[UIApplication sharedApplication].delegate;
NSFetchRequest *request = [[NSFetchRequest alloc]init];
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Entity" inManagedObjectContext:app.persistentContainer.viewContext];
[request setEntity:entity];
NSArray *arr = [app.persistentContainer.viewContext executeFetchRequest:request error:nil];
return [arr mutableCopy];
}
@end
檢視.h
#import <UIKit/UIKit.h>
@interface AddView : UIView
@property(nonatomic,strong)UITextField *theBookTF;
@property(nonatomic,strong)UITextField *thePriceTF;
@end
檢視.m
#import "AddView.h"
@implementation AddView
-(instancetype)initWithFrame:(CGRect)frame
{
if (self = [super initWithFrame:frame]) {
[self addSubview:self.theBookTF];
[self addSubview:self.thePriceTF];
}
return self;
}
#pragma mark - 屬性例項化
-(UITextField *)theBookTF
{
if (!_theBookTF) {
_theBookTF = [[UITextField alloc] initWithFrame:CGRectMake(0, 0, 200, 40)];
_theBookTF.center = CGPointMake(self.center.x, self.center.y - 50);
_theBookTF.layer.borderWidth = 1.0;
_theBookTF.borderStyle = UITextBorderStyleRoundedRect;
_theBookTF.placeholder = @"姓名";
}
return _theBookTF;
}
-(UITextField *)thePriceTF
{
if (!_thePriceTF) {
_thePriceTF = [[UITextField alloc] initWithFrame:CGRectMake(0, 0, 200, 40)];
_thePriceTF.center = CGPointMake(self.center.x, self.center.y + 10);
_thePriceTF.borderStyle = UITextBorderStyleRoundedRect;
_thePriceTF.layer.borderWidth = 1.0;
_thePriceTF.placeholder = @"年齡";
}
return _thePriceTF;
}
@end
主控制器.h
#import <UIKit/UIKit.h>
@interface ViewController : UITableViewController
@end
主控制器.m
#import "ViewController.h"
#import "DataBase.h"
#import "Entity+CoreDataClass.h"
#import "AddViewController.h"
@interface ViewController ()
//接收陣列
@property(nonatomic,strong)NSArray *theDataArr;
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.title = @"圖書管理資訊平臺";
//導航條按鈕
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"新增" style:UIBarButtonItemStylePlain target:self action:@selector(addName)];
}
-(void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
//
self.theDataArr = [[DataBase showdata
]showAllArray];
//重新整理表格
[self.tableView reloadData];
}
-(void)addName
{
// 進入Add檢視
AddViewController *addVC = [[AddViewController alloc] init];
[self.navigationController pushViewController:addVC animated:YES];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return self.theDataArr.count;
}
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
Entity *enti = self.theDataArr [indexPath.row];
[[DataBase showdata]deletdata:enti];
self.theDataArr = [[DataBase showdata]showAllArray];
[self.tableView reloadData];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *identifier = @"cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:identifier];
}
Entity *theEntity = self.theDataArr[indexPath.row];
cell.textLabel.text = theEntity.personName;
cell.detailTextLabel.text = theEntity.personAge;
return cell;
}
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
AddViewController *theVc = [[AddViewController alloc]init];
theVc.theEntity = self.theDataArr[indexPath.row];
[self.navigationController pushViewController:theVc animated:YES];
}
@end
新增控制器.h
#import <UIKit/UIKit.h>
#import "Entity+CoreDataClass.h"
@interface AddViewController : UIViewController
@property(nonatomic,strong)Entity *theEntity;
@end
新增控制器.m
#import "AddViewController.h"
#import "AddView.h"
#import "Entity+CoreDataClass.h"
#import "DataBase.h"
@interface AddViewController ()
{
AddView *theAddView;
}
@end
@implementation AddViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.title = @"新增資料平臺";
theAddView = [[AddView alloc] initWithFrame:self.view.frame];
theAddView.backgroundColor = [UIColor whiteColor];
self.view = theAddView;
theAddView.theBookTF.text = self.theEntity.personName;
theAddView.thePriceTF.text = self.theEntity.personAge;
if (theAddView.theBookTF.text == nil ||theAddView.theBookTF.text.length <= 0)
//新增按鈕文字
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSave target:self action:@selector(save)];
else
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemEdit target:self action:@selector(update)];
}
//新增
-(void)save
{
NSDictionary *dict = @{@"personName":theAddView.theBookTF.text,@"personAge":theAddView.thePriceTF.text};
// CoreDataModel *data = [[CoreDataModel alloc]init];
// data.dataage = theAddView.theBookTF.text;
// data.dataname = theAddView.thePriceTF.text;
[[DataBase showdata] addname:dict];
[self.navigationController popViewControllerAnimated:YES];
}
//修改
-(void)update{
self.theEntity.personName=theAddView.theBookTF.text;
self.theEntity.personAge = theAddView.thePriceTF.text;
[[DataBase showdata]changedata];
[self.navigationController popViewControllerAnimated:YES];
}
@end
相關文章
- 資料儲存:CoreData
- iOS CoreData (二) 版本升級和資料庫遷移iOS資料庫
- CoreData實踐(五)——修改資料
- iOS資料持久化儲存-CoreDataiOS持久化
- CoreData實踐(四)——查詢資料
- CoreData實踐(六)——資料刪除
- ios Coredata 關聯 UITableView 資料自動更新iOSUIView
- CoreData實踐(二)——設計資料結構資料結構
- 從0開始弄一個面向OC資料庫(三)--資料庫升級,資料遷移,刪除資料資料庫
- IOS資料儲存之CoreData使用優缺點iOS
- 從0開始弄一個面向OC資料庫(二)--插入、更新、查詢資料資料庫
- 從0開始弄一個面向OC資料庫--終結篇資料庫
- iOS CoreDataiOS
- 從0開始弄一個面向OC資料庫(四)–複雜資料模型儲存資料庫模型
- 從0開始弄一個面向OC資料庫(四)--複雜資料模型儲存資料庫模型
- 從0開始弄一個面向OC資料庫(一)--開啟、關閉資料庫,動態建表資料庫
- 如何解決SQL Server資料庫的軟硬體效能瓶頸OCSQLServer資料庫
- swift專案呼叫OC庫 和OC專案 在swift檔案裡面全域性呼叫OC庫Swift
- CoreData實踐(三)——插入資料並使用SQLite Professional檢視SQLite
- iOS CoreData (1)iOS
- CoreData總結
- CoreData:使用CoreData完成一個通訊錄儲存
- 從0開始弄一個面向OC資料庫(五)–多執行緒安全資料庫執行緒
- 從0開始弄一個面向OC資料庫(五)--多執行緒安全資料庫執行緒
- CoreData實踐(一)
- Swift實踐:使用CoreData儲存多種資料類的通訊錄Swift
- OC多型 - OC多型
- 【資料庫】mysql資料庫索引資料庫MySql索引
- iOS CoreData排序之 NSFetchRequestiOS排序
- Greenplum資料庫,分散式資料庫,大資料資料庫分散式大資料
- 大資料圖資料庫之TAO資料庫大資料資料庫
- 筆記-資料結構之 Hash(OC的粗略實現)筆記資料結構
- 資料庫PostrageSQL-管理資料庫資料庫SQL
- 資料庫映象和資料庫快照資料庫
- 【資料庫資料恢復】SAP資料庫資料恢復案例資料庫資料恢復
- 資料庫修改資料資料庫
- 資料庫資料整理資料庫
- 【資料庫資料恢復】MS SQL資料庫附加資料庫出錯怎麼恢復資料?資料庫資料恢復SQL