激情久久久_欧美视频区_成人av免费_不卡视频一二三区_欧美精品在欧美一区二区少妇_欧美一区二区三区的

服務(wù)器之家:專注于服務(wù)器技術(shù)及軟件下載分享
分類導(dǎo)航

PHP教程|ASP.NET教程|Java教程|ASP教程|編程技術(shù)|正則表達(dá)式|C/C++|IOS|C#|Swift|Android|VB|R語言|JavaScript|易語言|vb.net|

服務(wù)器之家 - 編程語言 - IOS - iOS CoreData 增刪改查詳解

iOS CoreData 增刪改查詳解

2021-01-27 16:21肖品 IOS

這篇文章主要為大家詳細(xì)介紹了iOS CoreData 增刪改查的相關(guān)資料,具有一定的參考價值,感興趣的小伙伴們可以參考一下

最近在學(xué)習(xí)coredata, 因?yàn)轫?xiàng)目開發(fā)中需要,特意學(xué)習(xí)和整理了一下,整理出來方便以后使用和同行借鑒。目前開發(fā)使用的swift語言開發(fā)的項(xiàng)目。所以整理出來的是swift版本,oc我就放棄了。 雖然swift3 已經(jīng)有了,目前整理的這個版本是swift2 的。swift 3 的話有些新特性。 需要另外調(diào)整,后續(xù)有時間再整理。 

繼承coredata有兩種方式: 

創(chuàng)建項(xiàng)目時集成

iOS CoreData 增刪改查詳解

這種方式是自動繼承在appdelegate里面,調(diào)用的使用需要通過uiapplication的方式來獲取appdelegate得到conext。本人不喜歡這種方式,不喜歡appdelegate太多代碼堆在一起,整理了一下這種方式

將coredata繼承的代碼單獨(dú)解耦出來做一個單例類 

項(xiàng)目結(jié)構(gòu)圖

iOS CoreData 增刪改查詳解

項(xiàng)目文件說明 
coredata核心的文件就是 
1.xpstoremanager(管理coredata的單例類) 
2.coredatademo.xcdatamodeld (coredata數(shù)據(jù)模型文件)
 3.student+coredataproperites.swift和student.swift (學(xué)生對象) 
4.viewcontroller.swift 和main.storyboard是示例代碼

iOS CoreData 增刪改查詳解

細(xì)節(jié)代碼 

1. xpstoremanager.swift
coredata數(shù)據(jù)管理單例類

 

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
//
 
// xpstoremanager.swift
 
// coredatademo
 
//
 
// created by xiaopin on 16/9/16.
 
// copyright © 2016年 xiaopin.cnblogs.com. all rights reserved.
 
//
 
 
 
import coredata
 
 
 
/// 本地數(shù)據(jù)庫管理類:默認(rèn)是寫在appdelegate的,可以這樣分離出來
 
class xpstoremanager {
 
 
 
 //單例寫法
 
 static let shareinstance = xpstoremanager()
 
 
 
 private init() {
 
  
 
 }
 
 
 
 // mark: - core data stack
 
 
 
 lazy var applicationdocumentsdirectory: nsurl = {
 
  // the directory the application uses to store the core data store file. this code uses a directory named "com.pinguo.coredatademo" in the application's documents application support directory.
 
  let urls = nsfilemanager.defaultmanager().urlsfordirectory(.documentdirectory, indomains: .userdomainmask)
 
  print("\(urls[urls.count-1])")
 
  return urls[urls.count-1]
 
 }()
 
 
 
 lazy var managedobjectmodel: nsmanagedobjectmodel = {
 
  // the managed object model for the application. this property is not optional. it is a fatal error for the application not to be able to find and load its model.
 
  let modelurl = nsbundle.mainbundle().urlforresource("coredatademo", withextension: "momd")!
 
  return nsmanagedobjectmodel(contentsofurl: modelurl)!
 
 }()
 
 
 
 lazy var persistentstorecoordinator: nspersistentstorecoordinator = {
 
  // the persistent store coordinator for the application. this implementation creates and returns a coordinator, having added the store for the application to it. this property is optional since there are legitimate error conditions that could cause the creation of the store to fail.
 
  // create the coordinator and store
 
  let coordinator = nspersistentstorecoordinator(managedobjectmodel: self.managedobjectmodel)
 
  let url = self.applicationdocumentsdirectory.urlbyappendingpathcomponent("singleviewcoredata.sqlite")
 
  var failurereason = "there was an error creating or loading the application's saved data."
 
  do {
 
   try coordinator.addpersistentstorewithtype(nssqlitestoretype, configuration: nil, url: url, options: nil)
 
  } catch {
 
   // report any error we got.
 
   var dict = [string: anyobject]()
 
   dict[nslocalizeddescriptionkey] = "failed to initialize the application's saved data"
 
   dict[nslocalizedfailurereasonerrorkey] = failurereason
 
   
 
   dict[nsunderlyingerrorkey] = error as nserror
 
   let wrappederror = nserror(domain: "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 \(wrappederror), \(wrappederror.userinfo)")
 
   abort()
 
  }
 
  
 
  return coordinator
 
 }()
 
 
 
 lazy var managedobjectcontext: nsmanagedobjectcontext = {
 
  // returns the managed object context for the application (which is already bound to the persistent store coordinator for the application.) this property is optional since there are legitimate error conditions that could cause the creation of the context to fail.
 
  let coordinator = self.persistentstorecoordinator
 
  var managedobjectcontext = nsmanagedobjectcontext(concurrencytype: .mainqueueconcurrencytype)
 
  managedobjectcontext.persistentstorecoordinator = coordinator
 
  return managedobjectcontext
 
 }()
 
 
 
 // mark: - core data saving support
 
 
 
 func savecontext () {
 
  if managedobjectcontext.haschanges {
 
   do {
 
    try managedobjectcontext.save()
 
   } catch {
 
    // 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.
 
    let nserror = error as nserror
 
    nslog("unresolved error \(nserror), \(nserror.userinfo)")
 
    abort()
 
   }
 
  }
 
 }
 
 
 
}

2.appdelegate.swift 

在這個行數(shù)中加入一句代碼,退出后執(zhí)行保存一下

?
1
2
3
4
5
6
func applicationwillterminate(application: uiapplication) {
  // called when the application is about to terminate. save data if appropriate. see also applicationdidenterbackground:.
  // saves changes in the application's managed object context before the application terminates.
  xpstoremanager.shareinstance.savecontext()
 
 }

3.student.swift 

編寫了針對這個學(xué)生對象的增刪改查 

 

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
//
 
// student.swift
 
// coredatademo
 
//
 
// created by cdmac on 16/9/12.
 
// copyright © 2016年 xiaopin.cnblogs.com. all rights reserved.
 
//
 
 
 
import foundation
 
import coredata
 
 
 
class student: nsmanagedobject {
 
 // insert code here to add functionality to your managed object subclass
 
 /*
 
  一般涉及到的情況有:增刪改,單對象查詢,分頁查詢(所有,條件查詢,排序),對象是否存在,批量增加,批量修改
 
  */
 
 
 
 /// 判斷對象是否存在, obj參數(shù)是當(dāng)前屬性的字典
 
 class func exsitsobject(obj:[string:string]) -> bool {
 
  
 
  //獲取管理數(shù)據(jù)對象的上下文
 
  let context = xpstoremanager.shareinstance.managedobjectcontext
 
  //聲明一個數(shù)據(jù)請求
 
  let fetchrequest = nsfetchrequest(entityname: "student")
 
  
 
  //組合過濾參數(shù)
 
  let stuid = obj["stuid"]
 
  let name = obj["name"]
 
  
 
  //方式一
 
  let predicate1 = nspredicate(format: "stuid = %@", stuid!)
 
  let predicate2 = nspredicate(format: "name = %@", name!)
 
  //合成過濾條件
 
  //or ,and, not , 意思是:或與非,懂?dāng)?shù)據(jù)庫的同學(xué)應(yīng)該就很容易明白
 
  let predicate = nscompoundpredicate(orpredicatewithsubpredicates: [predicate1,predicate2])
 
  //let predicate = nscompoundpredicate(andpredicatewithsubpredicates: [predicate1,predicate2])
 
  fetchrequest.predicate = predicate
 
  
 
  //方式二
 
  //fetchrequest.predicate = nspredicate(format: "stuid = %@ or name = %@", stuid!, name!)
 
  //fetchrequest.predicate = nspredicate(format: "stuid = %@ and name = %@", stuid!, name!)
 
  
 
  do{
 
   let fetchobjects:[anyobject]? = try context.executefetchrequest(fetchrequest)
 
   
 
   return fetchobjects?.count > 0 ? true : false
 
  }catch {
 
   fatalerror("exsitsobject \(error)")
 
  }
 
  
 
  return false
 
 }
 
 
 
 /// 添加對象, obj參數(shù)是當(dāng)前屬性的字典
 
 class func insertobject(obj: [string:string]) -> bool {
 
  
 
  //如果存在對象了就返回
 
  if exsitsobject(obj) {
 
   return false
 
  }
 
  
 
  //獲取管理的數(shù)據(jù)上下文 對象
 
  let context = xpstoremanager.shareinstance.managedobjectcontext
 
  
 
  //創(chuàng)建學(xué)生對象
 
  let stu = nsentitydescription.insertnewobjectforentityforname("student",
 
                  inmanagedobjectcontext: context) as! student
 
 
 
  //對象賦值
 
  let sexstr:string
 
  if obj["sex"] == "男"{
 
   sexstr = "1"
 
  }else{
 
   sexstr = "0"
 
  }
 
  let numberfmt = nsnumberformatter()
 
  numberfmt.numberstyle = .nostyle
 
  stu.stuid = numberfmt.numberfromstring(obj["stuid"]!)
 
  stu.name = obj["name"]
 
  stu.createtime = nsdate()
 
  stu.sex = numberfmt.numberfromstring(sexstr)
 
  stu.classid = numberfmt.numberfromstring(obj["classid"]!)
 
  
 
  //保存
 
  do {
 
   try context.save()
 
   print("保存成功!")
 
   return true
 
  } catch {
 
   fatalerror("不能保存:\(error)")
 
  }
 
  return false
 
 }
 
 
 
 /// 刪除對象
 
 class func deleteobject(obj:student) -> bool{
 
  
 
  //獲取管理的數(shù)據(jù)上下文 對象
 
  let context = xpstoremanager.shareinstance.managedobjectcontext
 
  
 
  //方式一: 比如說列表已經(jīng)是從數(shù)據(jù)庫中獲取的對象,直接調(diào)用coredata默認(rèn)的刪除方法
 
  context.deleteobject(obj)
 
  xpstoremanager.shareinstance.savecontext()
 
  
 
  //方式二:通過obj參數(shù)比如:id,name ,通過這樣的條件去查詢一個對象一個,把這個對象從數(shù)據(jù)庫中刪除
 
  //代碼:略
 
  
 
  return true
 
 }
 
 
 
 /// 更新對象
 
 class func updateobject(obj:[string: string]) -> bool {
 
  //obj參數(shù)說明:當(dāng)前對象的要更新的字段信息,唯一標(biāo)志是必須的,其他的是可選屬性
 
  let context = xpstoremanager.shareinstance.managedobjectcontext
 
  
 
  let oid = obj["stuid"]
 
  let student:student = self.fetchobjectbyid(int(oid!)!)! as! student
 
  
 
  //遍歷參數(shù),然后替換相應(yīng)的參數(shù)
 
  let numberfmt = nsnumberformatter()
 
  numberfmt.numberstyle = .nostyle
 
  
 
  for key in obj.keys {
 
   switch key {
 
   case "name":
 
    student.name = obj["name"]
 
   case "classid":
 
    student.classid = numberfmt.numberfromstring(obj["classid"]!)
 
   default:
 
    print("如果有其他參數(shù)需要修改,類似")
 
   }
 
  }
 
  
 
  //執(zhí)行更新操作
 
  do {
 
   try context.save()
 
   print("更新成功!")
 
   return true
 
  } catch {
 
   fatalerror("不能保存:\(error)")
 
  }
 
  
 
  return false
 
 }
 
 
 
  /// 查詢對象
 
 class func fetchobjects(pageindex:int, pagesize:int) -> [anyobject]? {
 
  //獲取管理的數(shù)據(jù)上下文 對象
 
  let context = xpstoremanager.shareinstance.managedobjectcontext
 
  
 
  //聲明數(shù)據(jù)的請求
 
  let fetchrequest:nsfetchrequest = nsfetchrequest(entityname: "student")
 
  fetchrequest.fetchlimit = pagesize //每頁大小
 
  fetchrequest.fetchoffset = pageindex * pagesize //第幾頁
 
  
 
  //設(shè)置查詢條件:參考exsitsobject
 
  //let predicate = nspredicate(format: "id= '1' ", "")
 
  //fetchrequest.predicate = predicate
 
  
 
  //設(shè)置排序
 
  //按學(xué)生id降序
 
  let stuidsort = nssortdescriptor(key: "stuid", ascending: false)
 
  //按照姓名升序
 
  let namesort = nssortdescriptor(key: "name", ascending: true)
 
  let sortdescriptors:[nssortdescriptor] = [stuidsort,namesort]
 
  fetchrequest.sortdescriptors = sortdescriptors
 
  
 
  //查詢操作
 
  do {
 
   let fetchedobjects:[anyobject]? = try context.executefetchrequest(fetchrequest)
 
   
 
   //遍歷查詢的結(jié)果
 
   /*
 
   for info:student in fetchedobjects as! [student]{
 
    print("id=\(info.stuid)")
 
    print("name=\(info.name)")
 
    print("sex=\(info.sex)")
 
    print("classid=\(info.classid)")
 
    print("createtime=\(info.createtime)")
 
    print("-------------------")
 
    
 
   }
 
    */
 
   return fetchedobjects
 
  }
 
  catch {
 
   fatalerror("不能保存:\(error)")
 
  }
 
  return nil
 
 }
 
 
 
  /// 根據(jù)id查詢當(dāng)個對象
 
 class func fetchobjectbyid(oid:int) -> anyobject?{
 
  
 
  //獲取上下文對象
 
  let context = xpstoremanager.shareinstance.managedobjectcontext
 
  
 
  //創(chuàng)建查詢對象
 
  let fetchrequest:nsfetchrequest = nsfetchrequest(entityname: "student")
 
  
 
  //構(gòu)造參數(shù)
 
  fetchrequest.predicate = nspredicate(format: "stuid = %@", string(oid))
 
  
 
  //執(zhí)行代碼并返回結(jié)果
 
  do{
 
   let results:[anyobject]? = try context.executefetchrequest(fetchrequest)
 
   
 
   if results?.count > 0 {
 
    return results![0]
 
   }
 
  }catch{
 
   fatalerror("查詢當(dāng)個對象致命錯誤:\(error)")
 
  }
 
  
 
  return nil
 
 }
 
}

4.viewcontroller.swift 

具體使用: 

 

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
//
 
// viewcontroller.swift
 
// coredatademo
 
//
 
// created by cdmac on 16/9/11.
 
// copyright © 2016年 pinguo. all rights reserved.
 
//
 
 
 
import uikit
 
 
 
let cellidentifiler = "reusecell"
 
 
 
class viewcontroller: uiviewcontroller {
 
 @iboutlet weak var txtno: uitextfield!
 
 @iboutlet weak var txtname: uitextfield!
 
 @iboutlet weak var txtsex: uitextfield!
 
 @iboutlet weak var txtclassid: uitextfield!
 
 @iboutlet weak var tableview: uitableview!
 
 var dataarray:[anyobject]?
 
 
 
 override func viewdidload() {
 
  super.viewdidload()
 
  // do any additional setup after loading the view, typically from a nib.
 
  self.dataarray = student.fetchobjects(0, pagesize: 20)
 
  self.tableview.reloaddata()
 
 }
 
 
 
 override func didreceivememorywarning() {
 
  super.didreceivememorywarning()
 
  // dispose of any resources that can be recreated.
 
 }
 
 
 
 
 
 @ibaction func addaction(sender: anyobject) {
 
 
 
  var dic = [string:string]()
 
  
 
  dic["stuid"] = txtno.text
 
  dic["name"] = txtname.text
 
  dic["sex"] = txtsex.text
 
  dic["classid"] = txtclassid.text
 
  
 
  if student.insertobject(dic) {
 
   print("添加成功")
 
   self.dataarray = student.fetchobjects(0,pagesize: 20)
 
   
 
   self.tableview.reloaddata()
 
  }else{
 
   print("添加失敗")
 
  }
 
 }
 
 
 
 @ibaction func updateaction(sender: anyobject) {
 
  
 
  var dic = [string:string]()
 
  
 
  dic["stuid"] = txtno.text
 
  dic["name"] = txtname.text
 
  //dic["sex"] = txtsex.text
 
  dic["classid"] = txtclassid.text
 
  
 
  if student.updateobject(dic) {
 
   print("更新成功")
 
   self.dataarray = student.fetchobjects(0,pagesize: 20)
 
   
 
   self.tableview.reloaddata()
 
  }else{
 
   print("更新失敗")
 
  }
 
  
 
 }
 
 
 
}
 
 
 
extension viewcontroller:uitableviewdelegate,uitableviewdatasource{
 
 
 
 //表格有多少組
 
 func numberofsectionsintableview(tableview: uitableview) -> int {
 
  return 1
 
 }
 
 
 
 //每組多少行
 
 func tableview(tableview: uitableview, numberofrowsinsection section: int) -> int {
 
  if self.dataarray != nil && self.dataarray?.count > 0 {
 
   return self.dataarray!.count
 
  }
 
  return 0
 
 }
 
 
 
 //高度
 
 func tableview(tableview: uitableview, heightforrowatindexpath indexpath: nsindexpath) -> cgfloat {
 
  return 50
 
 }
 
 
 
 //單元格加載
 
 func tableview(tableview: uitableview, cellforrowatindexpath indexpath: nsindexpath) -> uitableviewcell {
 
  let cell = tableview.dequeuereusablecellwithidentifier(cellidentifiler)
 
  
 
  let stu:student = self.dataarray![indexpath.row] as! student
 
  
 
  let label1:uilabel = cell?.contentview.viewwithtag(10001) as! uilabel
 
  let label2:uilabel = cell?.contentview.viewwithtag(10002) as! uilabel
 
  var sexstr = "男"
 
  if stu.sex?.intvalue != 1 {
 
   sexstr = "女"
 
  }
 
  label1.text = "\(stu.stuid!) \(stu.name!) \(sexstr) \(stu.classid!)"
 
  label2.text = "http://xiaopin.cnblogs.com"
 
  
 
  return cell!
 
 }
 
 
 
 //選中
 
 func tableview(tableview: uitableview, didselectrowatindexpath indexpath: nsindexpath) {
 
  
 
 }
 
 
 
 func tableview(tableview: uitableview, caneditrowatindexpath indexpath: nsindexpath) -> bool {
 
  return true
 
 }
 
 
 
 func tableview(tableview: uitableview, commiteditingstyle editingstyle: uitableviewcelleditingstyle, forrowatindexpath indexpath: nsindexpath) {
 
  if editingstyle == .delete {
 
   //獲取當(dāng)前對象
 
   let student:student = self.dataarray![indexpath.row] as! student
 
   
 
   //刪除本地存儲
 
   student.deleteobject(student)
 
   
 
   //刷新數(shù)據(jù)源
 
   self.dataarray?.removeatindex(indexpath.row)
 
   //self.dataarray = student.fetchobjects(0, pagesize: 20)
 
   
 
   //刪除單元格
 
   tableview.deleterowsatindexpaths([indexpath], withrowanimation: .automatic)
 
  }
 
 }
 
 
 
 func tableview(tableview: uitableview, editingstyleforrowatindexpath indexpath: nsindexpath) -> uitableviewcelleditingstyle {
 
  return .delete
 
 }
 
 
 
 func tableview(tableview: uitableview, titlefordeleteconfirmationbuttonforrowatindexpath indexpath: nsindexpath) -> string? {
 
  return "刪除"
 
 }
 
}

運(yùn)行效果圖

iOS CoreData 增刪改查詳解

源碼下載:coredatademo.zip

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持服務(wù)器之家。

原文鏈接:http://www.cnblogs.com/xiaopin/archive/2016/09/18/5883203.html

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 国产美女三级做爰 | 日本高清视频网站www | 福利在线播放 | 久久综合久久综合久久 | 国产一级淫片在线观看 | 欧美老外a级毛片 | 综合毛片 | 日日草夜夜操 | 91精品国产91久久久久久不卞 | 久草视频国产在线 | 99国产精品自拍 | 在线免费视频a | xxx日本视频| 欧美精品免费一区二区三区 | 操碰视频在线观看 | 91免费在线| 免费视频一区 | 久久精品一级 | 亚洲精品v天堂中文字幕 | 国产精品久久久久久久四虎电影 | 欧洲成人综合网 | 欧美成人视 | 精品一区二区三区免费毛片 | 日韩在线观看视频免费 | 黄色毛片免费看 | 久久精品亚洲一区二区三区观看模式 | 一级α片 | 中文字幕亚洲视频 | 久久久久久99 | 亚洲综合视频网 | 91精品国产乱码久久桃 | 欧美性受ⅹ╳╳╳黑人a性爽 | 九九热这里只有精品8 | 精品在线观看一区二区三区 | 国产精品久久久久久久久久iiiii | 久久看免费视频 | 精品中文字幕久久久久四十五十骆 | 国产一级中文字幕 | 思思久而久而蕉人 | 日韩精品一区二区免费视频 | 午夜影院a |