代码改变世界

阅读排行榜

IOS UITableView分组与索引分区实例

2015-08-25 21:58 by 甘雨路, 458 阅读, 收藏,
摘要: 1 #import 2 3 @interface AppDelegate : UIResponder 4 5 @property (strong, nonatomic) UIWindow *window;6 7 8 @end 1 #import "AppDelegate.h" 2 #import "... 阅读全文

iOS 通过接受距离传感器的消息改变屏幕的明暗度(仅限用于真实的手机)

2015-07-06 22:11 by 甘雨路, 447 阅读, 收藏,
摘要: 1 #import "AppDelegate.h" 2 3 @interface AppDelegate () 4 5 @end 6 7 @implementation AppDelegate 8 9 10 - (BOOL)application:(UIApplication *)appl... 阅读全文

PLSQL 申明和游标

2016-12-09 17:20 by 甘雨路, 446 阅读, 收藏,
摘要: --从键盘输入一个数 accept b prompt '请输入一个大于零的数字'; declare anum number := &b; begin while anum>0 loop dbms_output.put_line(anum); anum:=anum-1; end loop; end; declare v_num numb... 阅读全文

让整个界面呈现水波纹的效果

2015-06-27 00:25 by 甘雨路, 444 阅读, 收藏,
摘要: 1 #import "AppDelegate.h" 2 #import 3 4 @interface AppDelegate () 5 @property (nonatomic ,strong)UIImageView *birdImage; 6 @end 7 8 @implementatio... 阅读全文

仿网易抽屉效果

2016-05-05 17:21 by 甘雨路, 436 阅读, 收藏,
摘要: /** * 源代码的链接 * 链接: http://pan.baidu.com/s/1c2hqDzy 密码: jscx */ #import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window; @end #import "AppDelegate.h" ... 阅读全文
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 44 下一页