• 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性能優化 經驗

    開始進行應用程序性能分析的時候,一定要使用真機,模擬器運行在Mac上,然而Mac上的CPU往往比iOS設備要快。相反,Mac上的GPU和iOS設 備的完全不一樣,模擬器不得已要在軟件層面(CPU)模擬設備的GPU,這意味

    jopen 2015-02-05   38114   0

    iOS常用類庫 經驗

    ios 常用第三方類庫 分享類型: 游戲開發相關 http://blog.csdn.net/wstarx/article/details/6317779 http://iosdeveloper

    jopen 2015-03-10   18487   0

    ios FMDB使用:FMDBHelper 經驗

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

    jopen 2015-06-04   24005   0

    iOS開發入門 經驗

    0-引言 最近開始轉入iOS開發者陣營,本文檔就是為了記錄這趟學習歷程的點滴,該文章將持續更新中。。。 1-開發環境 iOS開發環境,不用多說,直接用Apple的Xcode, 在Mac的App

    jopen 2015-07-20   52980   0

    iOS 天氣地圖:WeatherMap 經驗

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

    jopen 2015-08-23   14751   0

    iOS按鈕:LGRadioButtonsView 經驗

    LGRadioButtonsView 是 radio button 在 iOS 的實現。 Installation With source code Download repository

    7n5e 2015-07-26   10010   0

    Deferred Deep Linking in iOS 經驗

    Custom URL Scheme 在 universal links 出現之前的很長一段時間里,iOS 上主要通過 custom URL scheme 來實現 deep linking,以及 app 間的通信。

    jopen 2015-12-31   15297   0

    iOS Push的門道 經驗

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

    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單元測試 根據目前主流單元測試框架:本公司IOS小組是使用GHUnit 和 OCMock 框架 XCode 內置了 OCUnit 單元測試框架,但目前最好用的測試框架應該是 GHUnit。通過

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