摘要:
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... 阅读全文