摘要:
首先使用CoreData创建Demo,勾上CoreData选项 然后创建Entity对象,点击Add Entity(+)按钮 生成Entity对象 重命名双击Entity选项,然后输入Person 设置Person属性,点击Attributes选项中的+号,实现添加属性,并给属性命名,且添加属性相关 阅读全文
阅读排行榜
iOS XML 解析(原生的)
2015-12-31 16:36 by 甘雨路, 328 阅读, 收藏,
摘要:
#import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window;@end#import "AppDelegate.h"#import "RootViewController.h"@... 阅读全文
iOS 聊天界面
2015-08-20 16:38 by 甘雨路, 319 阅读, 收藏,
摘要:
1 #import 2 3 @interface AppDelegate : UIResponder 4 5 @property (strong, nonatomic) UIWindow *window;6 7 8 @end 1 #import "AppDele... 阅读全文
PLSQL 的简单命令之四
2016-12-01 11:32 by 甘雨路, 318 阅读, 收藏,
摘要:
-- 子查询 -- in 等于表中的任意一个 select * from Stu where id in (select id from scores) -- 和子查询返回结果中的某一个值比较成立即可 select * from scores where id > all (select id from stu ) -- 和子查询返回结果中的所有值比较 select * from sco... 阅读全文
spring aop自动代理注解配置之二
2017-01-18 09:50 by 甘雨路, 317 阅读, 收藏,
摘要:
--> package com.zr.utils; import org.springframework.stereotype.Component; @Component("comp") public class Calculate implements Compute{ ... 阅读全文