摘要:
#import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window;@end/** * 注意: 适用于ios7或更高系统 * * 首先在工程里导入MultipeerConnecti... 阅读全文
阅读排行榜
iOS 设置导航栏之二(设置导航栏的颜色、文字的颜色、左边按钮的文字及颜色)
2015-12-25 15:14 by 甘雨路, 755 阅读, 收藏,
摘要:
#import <UIKit/UIKit.h> @interface AppDelegate : UIResponder <UIApplicationDelegate> @property (strong, nonatomic) UIWindow *window; @end #import "App 阅读全文
UITableView(可滚动到顶部和底部)
2015-08-17 11:05 by 甘雨路, 754 阅读, 收藏,
摘要:
#import "RootViewController.h"#define width [UIScreen mainScreen].bounds.size.width#define height [UIScreen mainScreen].bounds.size.height#define topH... 阅读全文
PLSQL 的简单命令之五
2016-12-02 17:25 by 甘雨路, 749 阅读, 收藏,
摘要:
--1. 查询和Zlotkey相同部门的员工姓名和雇用日期 select a.last_name,a.hire_date ,b.department_name from employees a,departments b where b.department_name in (select department_name from departments, employees where... 阅读全文
UIScrollView现实自动循环滚动
2015-07-07 23:39 by 甘雨路, 740 阅读, 收藏,
摘要:
1 #import "RootViewController.h" 2 3 #define width [UIScreen mainScreen].bounds.size.width 4 #define heigthY 150 5 #define scrollTime 1 6 7 ... 阅读全文