iphone開發備忘
1. 新增sqlite框架的路徑如下:
/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/usr/libsqlite3.dylib
2. iPhone開發不使用xib檔案的方法:
3. SQLITE建表語句
4. linux/MAC下強制結束程式
ps -ef //檢視程式號
kill -9 程式號 //強制結束
5. iphone程式設定啟動橫屏
只要在Info.plist裡面加UIInterfaceOrientation
給個 UIInterfaceOrientationLandscapeRight 就可以了
6. 彩色UIProgressView
http://pwiddershoven.nl/blog/2009/01/04/colored-uiprogressview.html
7. Cover Flow Effect
http://blog.objectgraph.com/index.php/2010/04/09/how-to-add-coverflow-effect-on-your-iphone-app-openflow/
8. 設定uitableview backgroundcolor:
正常情況下:
self.tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"BackgroundPattern.png"]];
grouped tableview:
[tableView setBackgroundView: nil];
[tableView setBackgroundView: [[[UIView alloc] init] autorelease]];
[tableView setBackgroundColor: UIColor.clearColor];
//設定底色為無色
9 工具欄居中
/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/usr/libsqlite3.dylib
2. iPhone開發不使用xib檔案的方法:
修改main.m裡的UIApplicationMain引數為
UIApplicationMain(argc, argv, nil, @"AppDelegate");
// AppDelegate為你的ApplicationDelegate
AppDelegate:
UIWindow *localWindow = [[UIWindow alloc] initWithFrame: [[UIScreen mainScreen] bounds]];
localWindow.backgroundColor = [UIColor whiteColor];
self.window = localWindow;
[localWindow release];
navigationController = [[UINavigationController alloc] initWithRootViewController:[[HomeViewController alloc] init]];
[window addSubview:[navigationController view]];
[window makeKeyAndVisible];
3. SQLITE建表語句
CREATE TABLE accountbook(id integer primary key autoincrement,
price number,
costtime date,
categorycode varchar(2),
categoryname varchar(20),
year varchar(4),
month varchar(2),
day varchar(2));
4. linux/MAC下強制結束程式
ps -ef //檢視程式號
kill -9 程式號 //強制結束
5. iphone程式設定啟動橫屏
只要在Info.plist裡面加UIInterfaceOrientation
給個 UIInterfaceOrientationLandscapeRight 就可以了
6. 彩色UIProgressView
http://pwiddershoven.nl/blog/2009/01/04/colored-uiprogressview.html
7. Cover Flow Effect
http://blog.objectgraph.com/index.php/2010/04/09/how-to-add-coverflow-effect-on-your-iphone-app-openflow/
8. 設定uitableview backgroundcolor:
正常情況下:
self.tableView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"BackgroundPattern.png"]];
grouped tableview:
[tableView setBackgroundView: nil];
[tableView setBackgroundView: [[[UIView alloc] init] autorelease]];
[tableView setBackgroundColor: UIColor.clearColor];
//設定底色為無色
9 工具欄居中
//新增底部拍照的工具欄
//左空格
UIBarButtonItem *leftflexible = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
//右空格
UIBarButtonItem *rightflexible = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
UIBarButtonItem *cameraitem = [[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCamera target:self action: @selector(beginScan)] autorelease];
NSArray *myToolbarItems = [[NSArray alloc] initWithObjects: leftflexible,cameraitem,rightflexible, nil];
[self setToolbarItems: myToolbarItems animated:YES];
相關文章
- 開發 備忘錄 - 雜
- PHP 日常開發備忘PHP
- Android開發:日誌功能備忘Android
- Web 開發人員備忘單Web
- iOS開發備忘筆記 (3)iOS筆記
- iOS開發備忘筆記 (2)iOS筆記
- iPhone上如何救援已刪除備忘錄iPhone
- 如何備份iPhone手機備忘錄到電腦上iPhone
- iOS開發備忘筆記 (持續更新中)iOS筆記
- 開發環境的 Ubuntu Desktop 18.04LTS 開發環境配置備忘開發環境Ubuntu
- Swoole 核心開發備忘:記憶體管理優化(swString)記憶體優化
- 移動端HTML5頁面開發備忘錄HTML
- 【備忘錄】
- 備忘錄
- RunLoop備忘OOP
- Vuepress 備忘Vue
- HTTPS備忘HTTP
- RabbitMQ備忘錄MQ
- Docker代理備忘Docker
- Eigen備忘錄
- tmux使用備忘UX
- Runtime備忘-isa
- Python 備忘錄Python
- 13 個Typescript 實用型別:開發人員的備忘單TypeScript型別
- iOS 14:如何在iPhone和iPad上增強語音備忘錄錄音iOSiPhoneiPad
- MySQL 8:備份&匯入【備忘】MySql
- ADB常用指令備忘
- Java Lambda 使用備忘Java
- Docker部署flink備忘Docker
- word備忘【圖片】
- lldb常用操作備忘LLDB
- 網站備忘錄網站
- 備忘錄模式(Memento)模式
- python編譯備忘Python編譯
- linux 備忘記錄Linux
- Java備忘錄《集合》Java
- iPhone開發實戰iPhone
- 在哪裡開啟win10備忘錄?win10電腦備忘錄如何固定在桌面上?Win10
- win10系統日曆備忘錄在哪裡_win10開啟日曆備忘錄的方法Win10