山姆的編程實作分享。。。

Sam Blog, Sam Sharing, Sam Studio

山姆的編程實作分享。。。

2014年3月23日

申請蘋果開發者帳戶 (Enroll Apple Developer Programs)


研究 iOS App 開發也用一個月的時間了,是時候付給 Apple "保護費" 了,不是啦,是 "年費" 呀! 因為想在 iOS devices 上跑自己的程式或在 App Store 發佈 自己嘔心瀝血的App 都必須加入 Apple Developer Programs. 以下是 Apple Developer Programs 旳入口網址 https://developer.apple.com/programs/ Step1: 登入後的畫面如下: 如畫面所示,加入 iOS 或 Mac Developer Program...

2014年3月19日

開發 iOS App 的事前準備


硬體準備: 一台Mac電腦且OS版本必須是 OS X10.8 (Mountain Lion) 或更新的版本 iOS 裝置,如iPhone, iPad; 如果你只是寫寫小程式在iOS 模擬器跑,此項非絕對必要 軟體準備: Xcode, Xcode 是Apple 整合開發環境的套件 (Integrated Development Environment, IDE) iOS SDK (Software Development Kit), 包含iOS framework, Objective C complier 和相關一些工具程式 身份: Apple ID, 想在App Store 下載遊戲或程式一定需要它,因為Xcode 和iOS SDK 就是透過App Store 下載的 Apple Developer Program,如果你想要將你的程式跑在iOS 裝置或在App...

2014年3月13日

LBS 定位廣告點擊率


原文 http://www.vpon.com/en-us/case.html Vpon 表示, 透過LBS定位廣告機制,北京及上海消費者透過手機廣告展現消費力,有如下的統計結果: Clickthrough rate (CTR): 1.5%~6.4% Percentage of clicks contributed by unique users: 76.62% Click rate for the Nearest McDonald's activity page: 64.48% Click rate for the Call McDonald's Delivery Hotline activity page: 16.43% ...

2014年3月9日

Designing for iOS 7 重點摘要 from iOS Human Interface Guidelines


iOS Human Interface Guidelines 原文出處: https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/MobileHIG/MobileHIG.pdf 原文長達 223 頁, 共13 topics 1. Designing for iOS 7 2. iOS App Anatomy 3. Starting and Stopping 4. Layout 5. Navigation 6. Modal Contexts 7. Interactivity...

2014年3月8日

Starting and Stopping 重點摘要 from iOS Human Interface Guidelines


iOS Human Interface Guidelines 原文出處: https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/MobileHIG/MobileHIG.pdf 原文長達 223 頁, 共13 topics 1. Designing for iOS 7 2. iOS App Anatomy 3. Starting and Stopping 4. Layout 5. Navigation 6. Modal Contexts 7. Interactivity...

2014年3月4日

申請 Google 開發者帳戶


下面是申請 Google 開發者帳戶的入口網址: https://developer.android.com/distribute/googleplay/publish/register.html Step1: 登入後,看到的畫面是 如頁面所示, 1. Google 要你確認要使用目前的Gmail帳號或重新申請一個 2. Google 要你簽 <<Google Play 開發人員協議>> 同意書 3. 要你準備好信用卡, 因為申請Google 開發者帳戶須支付美金$25的會費 (終生). Step...

2014年3月3日

Objective-C 類別宣告與實作


類別的宣告必需在 @interface 區段,其語法爲 @interface NewClassName: ParentClassName         propertyAndMethodDeclarations; @end PS: 類別名稱第一個字母通常是大寫, 這是約定成俗的做法,以便區分是類別名或變數名稱 類別的實作則是在 @implementation 區段,其語法爲 @implementation NewClassName {         memberDeclarations; }         methodDefinitions; @en...

2014年3月2日

PayPal 帳戶申請


PayPal 是跨國線上支付平台, 提供付款&收款的服務. 如PayPal 網站所言, 當你在線上購物時, 透過PayPal, 你不再需要透露你的信用卡資料, 當你在網路上銷售商品時, 你可以透過PayPal取得交易款. 對於App 開發者,想在App廣告上獲利,再將獲利轉到你的台灣帳戶,  申請 PayPal 帳戶是必要; 這也是筆者申請 PayPal帳戶的主要原因. PayPal 網址: https://www.paypal.com/tw/webapps/mpp/home 申請 PayPal帳戶流程: Step...

Objective-C 初體驗


對初次接觸Objective-C的人來說, Objective-C類別的函數呼叫方式還真的需要時間適應! Objective-C類別函數的呼叫語法為: [ClassOrInstance method]; 例如,類別People有一個函數方法為getAge,其呼叫的程式碼就是 [People getAge];  和C語言的語法是不是差異很大 (People.getAge();)...

熱門文章