Time of Update: 2018-12-06
關東升老師的iOS視頻開放了,歡迎大家線上觀看,就是版本有些老,希望對有需要的同學有協助(高清的)iPhone與iPad開發實戰--精通iOS開發(37講)http://v.51work6.com/courseInfoRedirect.do?action=courseInfo&courseId=240566iPhone與iPad開發實戰--iOS經典應用剖析(30講)http://v.51work6.com/courseInfoRedirect.do?action=courseInfo&
Time of Update: 2018-12-06
NSLog(@"Hello, World!"); NSDictionary *myDic=[[NSDictionary alloc]initWithObjectsAndKeys:@"張三",@"name",@"李四",@"name", nil]; NSUInteger count = [myDic count]; NSLog(@"詞典的數量為: %lu",count); NSEnumerator * myEnumerator = [
Time of Update: 2018-12-06
ASIHTTPRequest用法不多介紹,網上一堆,執行個體1 #import <UIKit/UIKit.h>2 #import "MainView.h"3 4 @interface AppDelegate : UIResponder <UIApplicationDelegate>5 6 @property (strong, nonatomic) UIWindow *window;7 @property (strong, retain) MainView
Time of Update: 2018-12-06
1. 常見問題 a,為什麼建立的UIButton 點擊不了,沒有反應? 原因可能是:UIView 在initWithFrame時候沒有小了,超出UIWindow 地區。 b, presentModalViewController動畫效果 modalTransitionStyle = UIModalTransitionStyleFlipHorizontal; [self dismissModalViewControllerAnimated:YES];
Time of Update: 2018-12-06
1. NSUserDefaults 個人認為ios這個方法有點類似於c#中Properties.Settings.Default,NSUserDefaults只支援: NSString, NSNumber, NSDate, NSArray, NSDictionary. 建立一個user defaults方法有多個,最簡單得快速建立方法: NSUserDefaults *accountDefaults = [NSUserDefaults
Time of Update: 2018-12-06
1. NSClassFromString 這個方法判斷類是否存在,如果存在就動態載入的,不存為就返回一個Null 物件; id myObj = [[NSClassFromString(@"MySpecialClass") alloc] init]; 正常情況下等價於:id myObj = [[MySpecialClass alloc] init]; 優點:1,
Time of Update: 2018-12-06
1.uiscrollview 設定背景圖片// Setup the Scroll ViewUIScrollView*tempScrollView=(UIScrollView*)self.view;tempScrollView.contentSize=CGSizeMake(320,720);// Set Stationary Background, so that while the user scroll the background is// fixed.UIImage*img
Time of Update: 2018-12-06
網上下載了一個ios做瀑布流圖片展示源碼,之前藉助做web的經驗,我已為ios類似於css style中有個float:left的效果,然後形成瀑布流效果,或者像用html中做個表格分成一行幾列,然後在裡面填充內容。 剛下載瀑布流demo大致意路是這樣: 1. 總先做成幾列是事先要清楚,有多少條記錄,這個可以從json或者xml中讀取後知道(json或xml最好將圖片的高度和寬度也顯示出來,便於後面用到)。
Time of Update: 2018-12-06
https://forums.codegear.com/message.jspa?messageID=561776#561776 In this post, some guys are confused in this issue. Since i just have time to check the RAD Studio X4 during our laboray holiday , i have try to do some resarch on this issue. i almost
Time of Update: 2018-12-06
XE4 六天前布了. 做了個加減法. 不再是fpc的工作方式, 編譯都在Win上即可. fpc是產生項目 到Mac上編譯調試, 實際上這樣也有點蛋疼. 只能建嚮導出來的應用? 更多的特性怎麼辦? IAP Social Share GameCenter等等. 支援自己寫新的component? 關鍵是怎麼把ios 的原生的部分接起來? 調試的機制和之前不同了, 和FlashBuilder 的方式差不多, 不過這次是透過Mac上跑一個 PA Server
Time of Update: 2018-12-06
Used in the Delphi Firemonkey Platform is very large, and is well organized. Of course Button, alone Firemonkey, and written.However, under certain circumstances in the OS the Native Control, because you will inevitably need to use a different API,
Time of Update: 2018-12-06
其他常規流程是在 iTunes Connect裡設定. 這裡講的是附加的部分,是需要在用XE4 編譯好了以後要做的. 要用到 Application Loader . 這個比較傳統的流程. 現在在Mac上已經是用 Xcode 整合的功能來發布到 Appstore了. 要登入:用開發人員帳號喔. 然後選擇 Delpoy your package. 如果iTunes connect 的 APP狀態沒有設定好, 不是 Wait for upload 的話
Time of Update: 2018-12-06
摘自:http://mobile.51cto.com/iphone-273735.htm 1、代碼自動完成功能的強大應用在Xcode中寫代碼,Xcode編輯器常常給出提示,如果給出的代碼提示符合我們的要求,我們就可以按tab鍵選擇所提示的代碼。如果提示代碼不符合我們要求,我們可以按下esc鍵,將整個提示列表顯示出來,找到我們需要的。在列表成員的最左邊有個小方框,如果裡面是f則對應的成員是函數;如果是m則是方法;如果是#則是#define命令;如果是E則是枚舉;如果上C表示類。如果我們不希望顯
Time of Update: 2018-12-06
1 - (void)viewDidLoad 2 { 3 [super viewDidLoad]; 4 // Do any additional setup after loading the view, typically from a nib. 5 6 NSString *text = @"tw ia nwifei xantianwif eixan tianwi feixan"; 7 8 //設定字型,包括字型及其大小 9
Time of Update: 2018-12-06
1 /* 2 實現tableview的下拉重新整理 3 tableview滑動就會觸發這個方法? 4 */ 5 -(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath 6 { 7 //當tableview下拉到最後一行的時候才觸發 8 if (indexPath.
Time of Update: 2018-12-06
檔案目錄如下:基本導航順序: root -> First -> Second -> Third。其中,FirstViewController作為 navigation堆棧的rootview 1、建立navigation。如果是想直接把navigation導航作為項目一開始的跟視圖,把RootViewController.h檔案裡的nav屬性放到AppDelegate.h裡即可,再把RootViewController.m檔案裡的action的代碼複製到
Time of Update: 2018-12-06
toolbar除了可以和navigationController一起用之外,也可以獨立用到view裡 1 // 2 // TWFXToolBarViewController.m 3 // DemoToolBar 4 // 5 // Created by Lion User on 13-1-19. 6 // Copyright (c) 2013年 Lion User. All rights reserved. 7 // 8 9 #import
Time of Update: 2018-12-06
ios項目的檔案分工程項目裡的檔案和程式沙箱裡的檔案兩種,其中項目工程裡的檔案是唯讀,為沙箱裡的檔案可讀可寫.對於讀檔案而言,不管是工程裡的還是沙箱的,方法都一樣,唯一不同的在於檔案路徑的擷取.1 檔案目錄 2 txt檔案.每一行資料的欄位之間是用 \t 來分割 3 TWFXCityCode類: 1 #import <Foundation/Foundation.h> 2 3 @interface TWFXCityCode : NSObject 4 { 5 @public 6
Time of Update: 2018-12-06
cydia源: 加入源:http://cydia.hackulo.us威鋒源:http://apt.weiphone.com178第一中文源:http://apt.178.com/91源
Time of Update: 2018-12-06
1 申請開發人員帳號 2 申請APP IDhttps://developer.apple.com/ios/manage/bundles/index.action Description:San ZhangBundle Identifier (App ID Suffix): cn.a.appname 3 申請CSR鑰匙串訪問-認證助理-從憑證授權單位求認證填寫註冊開發賬戶時的郵箱和使用者名稱,將CSR檔案儲存體到磁碟。 4 申請發布認證iOS provisioning