• iOS 學習資料整理 經驗

    這份學習資料是為 iOS 初學者所準備的, 旨在幫助 iOS 初學者們快速找到適合自己的學習資料, 節省他們搜索資料的時間, 使他們更好的規劃好自己的 iOS 學習路線, 更快的入門, 更準確的定位的目前所處的位置. 該文檔會持續更新, 同時也歡迎更多具有豐富經驗的 iOS 開發者將自己的常用的一些工具, 學習資料, 學習心得等分享上來, 我將定期篩選合并, 文檔尚有一些不完善之處, 也請不吝指出, 感謝您對 iOS 所做的貢獻, 讓我們一起把國內的 iOS 做得更好, 謝謝.

    jopen 2015-01-08   212120   0

    iOS 邊界視圖:CCMBorderView 經驗

    CCMBorderView 是簡單使用視圖來創建故事板右邊邊界的工具,無需任何代碼。

    jopen 2014-12-27   12628   0

    iOS 學習資料集合 經驗

    視頻教程(英文) Developing iOS 7 Apps for iPhone and iPad 斯坦福開放教程之一, 課程主要講解了一些 iOS 開發工具和 API 以及 iOS SDK 的使用, 屬于 iOS 基礎視頻

    goopen123 2015-01-18   89197   0

    iOS性能優化 經驗

    最近采用Instruments 來分析整個應用程序的性能.發現很多有意思的點,以及性能優化和一些分析性能消耗的技巧

    jopen 2015-02-05   38114   0

    iOS常用類庫 經驗

    ios 常用第三方類庫

    jopen 2015-03-10   18487   0

    ios FMDB使用:FMDBHelper 經驗

    FMDBHelper 可以更容易地使用 FMDB, 支持 ORM 和 JSON 成 Model。

    jopen 2015-06-04   24005   0

    iOS開發入門 經驗

    iOS開發環境,不用多說,直接用Apple的Xcode, 在Mac的App Store上直接下載安裝即可~

    jopen 2015-07-20   52980   0

    iOS 天氣地圖:WeatherMap 經驗

    天氣地圖(Weather Map)是結合地圖和天氣的 App,適合喜歡旅行的人,能一眼看到周邊的天氣狀況。

    jopen 2015-08-23   14751   0

    iOS按鈕:LGRadioButtonsView 經驗

    LGRadioButtonsView 是 radio button 在 iOS 的實現。

    7n5e 2015-07-26   10010   0

    Deferred Deep Linking in iOS 經驗

    其實 deep linking 并不是一個新名詞,在 web 開發領域,區別于指向首頁的鏈接( http://tech.glowing.com/ ),deep linking 是指向具體內容頁的鏈接( http://tech.glowing.com/cn/advices-to-junior-developers/ )。在移動開發領域,deep linking 則是指 mobile app 在 handle 特定 URI 的時候可以直接跳轉到對應的內容頁或觸發特定邏輯,而不僅僅是啟動 app。

    jopen 2015-12-31   15297   0

    iOS Push的門道 經驗

    iOS在誕生之初為了最大程度的保證用戶體驗,做了一些高瞻遠矚且影響深遠的設計。APNs(Apple Push Notification service)就是其中一項。

    jopen 2016-01-10   35308   0

    iOS截屏代碼 代碼段

    1.普通界面 /** *截圖功能 */ -(void)screenShot{ UIGraphicsBeginImageContextWithOptions(CGSizeMake(640, 960), YES, 0); //設置截屏大小 [[self.view layer] renderInContext:UIGraphicsGetCurrentContext()]; UIImage *viewIm

    jopen 2015-01-05   10452   0
    IOS   截屏  

    ios常用動畫 代碼段

    使用block 使用前需引入QuartzCore.framework, 并在相關文件中加入 #import"QuartzCore/QuartzCore.h" 定義 shakeFeedbackOverlay為UIImageView 設置 self.shakeFeedbackOverlay.alpha= 0.0; self.shakeFeedbackOverlay.layer.cornerRadius

    iosbg 2015-01-13   1369   0
    IOS  

    iOS驗證電話 代碼段

    //textField.text 為你要獲取的值 NSString *P_textfield = [textField.text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]]; ////////miller 手機 推薦驗證 /** * 手機號碼 * 移動:134[0-8],135,136,137,1

    fb24 2015-03-02   1357   1
    IOS  

    iOS的UIWebView用法 代碼段

    UIWebView的使用方法 //1.創建、設置代理 UIWebView *webView=[[UIWebView alloc] initWithFrame:CGRectMake(0, 20, 320, 300)]; webView.delegate = self; //2.加載網頁 NSURL *url=[NSURL URLWithString:@"http://www.google.com.h

    xmnx 2015-03-23   4918   0

    iOS打電話功能 代碼段

    //第一種打電話的方式 - (IBAction)firstCall:(id)sender { NSString *phone = @"18749627117"; if (phone != nil) { [[UIApplication sharedApplication] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"tel:%@

    fdwm 2015-04-19   7994   0
    IOS  

    iOS用ASIHttpRequest上傳 代碼段

    1.新建一個single view工程,導入ASIHttpRequest庫,導入MobileCoreServices、CFNetwork、SystemConfiguration和libz1.2.5.dylib四個系統庫 2.隨便導入一張圖片,比如haoyou.png 3.ViewController.h #import <UIKit/UIKit.h> #import "ASIHTTPRequest

    ccwv 2015-06-14   789   0
    IOS  

    iOS翻牌效果 代碼段

    - (IBAction)rotate:(id)sender { [UIView beginAnimations:@"View Filp" context:nil]; [UIView setAnimationDelay:0.25]; [UIView setAnimationCurve:UIViewAnimationCurveLinear]; [UIView setAnimationTransitio

    jopen 2015-06-28   1013   0

    IOS把圖片切成小片 代碼段

    #import <Foundation/Foundation.h> #import <AppKit/AppKit.h> int main(int argc, const char * argv[]) { @autoreleasepool { if (argc < 2) { return ; } NSString *inputFile = [NSString stringWithCString:ar

    jopen 2015-06-28   824   0
    IOS  
    P16

      IOS 單元測試 文檔

    根據目前主流單元測試框架:本公司IOS小組是使用GHUnit和OCMock框架XCode內置了OCUnit單元測試框架,但目前最好用的測試框架應該是GHUnit。通過GHUnit+OCMock組合,我們可以在iOS下進行較強大的單元測試功能。本文將演示如何在XCode4.2下使用OCUnit,GHUnit和OCMock進行單元測試。OCUnit在XCode下新建一個OCUnitProject工程,選中IncludeUnitTests選擇框,OCUnit框架則會為我們自動添加UnitTest框架

    l27795 2013-11-20   773   0
    1 2 3 4 5 6 7 8 9 10
  • sesese色