Time of Update: 2018-12-05
因為各種需求,需要擷取的路徑不一致,故寫下這文章,以作備忘。- (NSString *)getDocumentPath{ NSString *path = nil; // Method 1 NSArray *pathsArray = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); path = [pathsArray objectAtIndex:0];
Time of Update: 2018-12-05
這段時間在做iOS上二維碼和一維碼的識別其間遇到問題無數, 特此總結下來, 希望能給後來的同學供參考在iOS上, 做二維碼識別, 首先在網上尋找資料, 尋找到ZBar和ZXing這兩個開源的識別程式, 相比之下發現, iOS上ZBar能做一維碼(即條碼)和二維碼的識別, ZXing只能做二維碼的識別, 但ZXing在android上是可以即做一維碼又做二維碼的識別, 但在iOS上尚不支援一維碼的識識, 這是ZXing的官方說法,
Time of Update: 2018-12-05
atomic和nonatomic用來決定編譯器產生的getter和setter是否為原子操作。 atomic 設定成員變數的@property屬性時,預設為atomic,提供多安全執行緒。 在多線程環境下,原子操作是必要的,否則有可能引起錯誤的結果。加了atomic,setter函數會變成下面這樣: {lock}
Time of Update: 2018-12-05
1. 使用@property和@synthesize聲明一個成員變數,給其賦值是時要在前面加上"self.",以便調用成員變數的setmember方法。 直接調用成員變數並且給其賦值:member=[NSString stringWithFormat:@””];將不執行setmember 方法。 使用self調用成員變數並且給其賦值:self.member=[NSString stringWithFormat:@””];將執行setmember方法。2.延時函數:
Time of Update: 2018-12-05
概述:網路架構最低水平網路架構可以在iPhone SDK是的BSD
Time of Update: 2018-12-05
更新說明:後面發現這篇文章介紹的比較全面http://blog.csdn.net/ch_soft/article/details/6740000文章轉載於:http://www.ethangao.com/?p=273,謝謝作者分享。gdb不是萬能的,可是沒有gdb卻是萬萬不能的。這裡給大家簡單介紹下iOS開發中最基本的gdb命令。popo是print-object的簡寫,可用來列印所有NSObject對象。使用舉例如下:(gdb) po
Time of Update: 2018-12-05
獲得所支援的語言NSUserDefaults *defaults = [ NSUserDefaults standardUserDefaults ]; // 取得 iPhone 支援的所有語言設定 NSArray *languages = [defaults objectForKey : @"AppleLanguages" ]; NSLog ( @"%@" , languages);運行,列印結果:( en, "zh-Hant", "zh-Hans", fr,
Time of Update: 2018-12-05
protocol——協議協議是用來定義對象的屬性,行為和用於回調的。
Time of Update: 2018-12-05
轉載發布測試的最後一步打包(Archive),Xcode4協助文檔有比較詳細介紹,但是居然是錯的,這裡說明一下。1、設定“Build Settings”,是官方文檔,留意那個紅框,居然說反了。"Skip install"一定要選NO,否則在下面的打包步驟後,Organizer看不到你的程式,就為這折騰我好些時間,國外論壇一堆問題,說我按照官方文檔做了,怎麼Organizer看不到程式。 1.1 選擇ad hoc認證.在“Code
Time of Update: 2018-12-05
NSString *str = [deviceToken description]; HFAlert(str); // Convertthe token to a hex string and make sure it's all caps NSMutableString *tokenString = [NSMutableStringstringWithString:[[deviceToken description]uppercaseString]];
Time of Update: 2018-12-05
http://blog.csdn.net/csj1987/article/details/6657468IOS中的core
Time of Update: 2018-12-05
ios 手勢 程式碼片段 轉http://www.oschina.net/code/snippet_54100_8106UIKit中包含了UIGestureRecognizer類,用於檢測發生在裝置中的手勢。UIGestureRecognizer是一個抽象類別,定義了所有手勢的基本行為,它有下面一些子類用於處理具體的手勢: 1、拍擊UITapGestureRecognizer (任意次數的拍擊) 2、向裡或向外捏UIPinchGestureRecognizer (用於縮放)
Time of Update: 2018-12-05
當app從background切換到foreground,會trigger AppDelegate.m的2個方法:applicationWillEnterForeground and applicationDidBecomeActive但卻不會trigger current view controller的 viewWillAppear and viewDidAppear 方法,那麼怎麼通知current view呢?答案是通過在current view
Time of Update: 2018-12-05
通過ota安裝app是個很酷的功能,尤其是發給朋友測試的時候。一直想整理一下這方面的檔案,發現很多人都整理了。轉一篇兒中文的:iOS: install App via OTA用的是xcode4.3.這還有一篇兒英文的:Distributing an iPhone App (.ipa) Over the air with Xcode 4.雖然說是xcode4.但應該是4.2及以下的版本。因為4.3以後打包方式變了。前提: 能安裝app的device需要被包含在你的provisioning
Time of Update: 2018-12-05
SDK現在可以直接開啟setting頁面了,以往的SDK則不可以,當時我還花了大量時間去實現,結果不了了之。如果你想開啟Location SiOS5的SDK現在可以直接開啟setting頁面了,以往的SDK則不可以,當時我還花了大量時間去實現,結果不了了之。如果你想開啟Location Services的setting頁面,代碼如下:[[UIApplication sharedApplication] openURL:[NSURL
Time of Update: 2018-12-05
掃描wifi資訊:http://code.google.com/p/uwecaugmentedrealityproject/http://code.google.com/p/iphone-wireless/條碼掃描:http://zbar.sourceforge.net/iphone/sdkdoc/install.htmltcp/ip的通訊協議:http://code.google.com/p/cocoaasyncsocket/voip/sip:http://code.google.com/p/
Time of Update: 2018-12-05
Xcode 4.2 弱化了XIB,採用storyboard了,網上和買的教程都是用XIB來講解的,我就用XIB寫了一個HelloWorld程式。1. 建工程選擇iOS下的Application,建立Empty Application工程(更改工程為4.3工程(要5.0以下),不然會啟動並執行時候會報錯)2. 建xib檔案在工程目錄上右擊,建立檔案,選擇User Interface的Empty,建立MainWindow.xib檔案3.
Time of Update: 2018-12-05
昨天用delphiXE2寫了兩個iOS應用,一個是3D的,可惜我的iphone是3G的,3D的那個需要GPU支援,沒有跑起來。但是那個HD的還是啟動並執行挺好的。我用XCode開發有一年多的時間,XCode也算是不錯的開發工具,尤其是在macOS上,無與倫比。但是開發的效率上,無法跟delphi比。我用delphi
Time of Update: 2018-12-05
在iphone4的開發中,可以用- (void)presentModalViewController:(UIViewController *)modalViewController animated:(BOOL)animated[self presentModalViewController:<#(UIViewController *)modalViewController#> animated:<#(BOOL)animated#>]方法來切換由-
Time of Update: 2018-12-05
我們一般遇到要在IOS的UI上面加上一些按鈕。而這些按鈕。目前這些按鈕更傾向於加在UI的頂端,如 那麼該如何做: 首先UINavigationBar繼承於UIView,要加按鈕,則需要用到UINavigationItem類。它是在導航條上加上控制項的必要類。 查詢下API,發現UINavigationBar和UINavigationItem象是一對兄弟,總是形影不離,而且有個方法- (void)pushNavigationItem:(UINavigationItem *)item