Time of Update: 2013-12-10
直接上代碼: // // CountMeViewController.h // ImageView // // Created by zhang xujun on 13-9-9. // Copyright (c) 2013年 zhang xujun. All rights reserved. // #import
Time of Update: 2013-12-10
R(N)Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 1637 Accepted Submission(s): 853 Problem DescriptionWe know that some positive integer x can be expressed
Time of Update: 2013-12-10
block 現在已經基本上已經使用非常普遍了,在使用用中也又很多坑,下面把block開發中應該知道的那幾件事總結下. :內聯(inline)Block內聯block 說白了就是block被嵌入到一個函數中例如:typedef void (^HelloBlock)(void); - (void) BlockTest{HelloBlock myBlock= ^(void){NSLog(@"Hello
Time of Update: 2013-12-10
I got an error in XCode 4 Issue Navigator,but in Log Navigator there is no error.After restart XCode,the error was erase.//************************************************************************************I had the same problem in XCode 4:
Time of Update: 2013-12-10
1.UIWebView 播放(無法控制周期).h @interface webViewController : UIViewController { IBOutlet UIWebView *WebView; IBOutlet UINavigationBar *Nav; } @property (nonatomic, retain) IBOutlet UIWebView *
Time of Update: 2013-12-10
啟動Xcode4後,首先會有一個歡迎視窗,通過它,點擊“Create a new Xcode project”,可以直接開始建立項目當然也可以通過菜單或者捷徑來開始建立新項目選擇新項目模板為方便產生項目,Xcode4預設提供了幾種項目模板:Navigation-based Application: 該模板適用與需要介面導航的應用,基於該模板產生的應用程式,帶一個導航,顯示一個清單項目OpenGL ES Application:
Time of Update: 2013-12-10
代碼: //選擇按鈕 NSArray *buttonNames = [NSArray arrayWithObjects:@"今天", @"本周", @"本月", nil]; UISegmentedControl* segmentedControl = [[UISegmentedControl alloc]
Time of Update: 2013-12-10
要支援裝置旋轉,要做如下工作: 重寫對應的View
Time of Update: 2013-12-10
今天我們來看看iPhone 中資料庫的使用方法。iPhone 中使用名為SQLite
Time of Update: 2013-12-10
iphone開發過程中,如果遇到載入大資料或者涉及到網路通訊情況時,就需要在後台線程來完成這些事情。除了NSThread之外,iphone還提供了一套GCD機制協助開發人員來實現多線程開發。同NSThread相比,GCD的運行效率更高,開發更簡單。GCD的基礎是dispatch queue和block。 1. block可以簡單理解為一個任務。block在程式中的表現形式類似: 1 NSString * URL = @"......";23
Time of Update: 2013-12-10
Time of Update: 2013-12-10
今天要做一個button, 使用系統的沒啥意思,感覺學不到新東西,所以自己做uiview,(以前做symbian做神經了,啥都喜歡自己做)自己做委託,自己做控制項,大家別說我賤哦。畫個圓角的矩形沒啥難的,有兩種方法:1 。直接修改view的樣式,系統提供好的了:view.layer.cornerRadius = 6;view.layer.masksToBounds = YES;用layer做就可以了,十分簡單。這個需要倒庫 QuartzCore.framework; 2.
Time of Update: 2013-12-10
- (void)viewDidLoad { [super viewDidLoad]; flakeImage = [UIImage imageNamed:@"flake.png"]; [NSTimer scheduledTimerWithTimeInterval:(0.05) target:self
Time of Update: 2013-12-10
+(UIImage *)getImage:(NSString *)videoURL{ NSDictionary *opts = [NSDictionary dictionaryWithObject:[NSNumber numberWithBool:NO] forKey:AVURLAssetPreferPreciseDurationAndTimingKey]; NSURL *url = [[
Time of Update: 2013-12-10
一個基本的IOS聲音播放支援類,注釋不多對付看吧 #import <Foundation/Foundation.h> #import <AudioToolbox/AudioToolbox.h> #import <AVFoundation/AVFoundation.h> @interface Sound_Base :
Time of Update: 2013-12-10
Xcode 4 與 Xcode 3 相比,介面的變化還是滿大的。為了避免讓大家浪費時間在英文上,我決定把我的小小心得和大家分享。 我的環境是英文的。 我覺得 iPhone101 中的內容對於 HelloWorld
Time of Update: 2013-12-10
iPad開發的局限性 1、在iPad上使用Safari瀏覽普通網站網頁的時候,網頁因為太大而導致需要手動放大縮小或者滑動,雖然這種滑動行為在iPad上市之初的各種宣傳中被津津樂道,但時間久了我們還是會發現這樣做並不方便,給使用者帶來的感受並不十分好。 2、不支援Flash,在沒有越獄的iPad
Time of Update: 2013-12-10
//建立檔案-(void)CreateFile:(NSString*)path fileName:(NSString*)filename{ //建立檔案管理工具 NSFileManager *fileManager = [NSFileManager defaultManager]; //更改到待操作的目錄下
Time of Update: 2013-12-10
首先,寫一個類,繼承於UIButton。 標頭檔:Ios代碼 #import <Foundation/Foundation.h> @interface BlueButton : UIButton { } - (id)init; @end 1 實現檔案: 2 3
Time of Update: 2013-12-10
在項目中我封裝了個http請求的工具類,因為項目中只用到post請求,所以get請求的方法只是剛開始試了下,行得通,不知到有沒有錯誤,代碼如下:h檔案:[cpp]#import <Foundation/Foundation.h> /* *自訂http代理 */ @protocol MyhttpUitlDelegate <NSObject> -(void)