Category Archives: iOS development

iOS development relative

Icon only UITabbar, no title at all.

1.Clear the title attribute to empty. 2.Set the Image Insect attribute of the Tabbar item as follow And you’re good to go. Happy Tabbaring…

Posted in iOS development | Leave a comment

Set UITabbar tintColor via StoryBoard

I found that it’s really weird to set UITabbar tintColor. It won’t work if you change the Tint attribute in the View section. You have to add the attribute by yourself to make it work. Check this out. Happy Tabbaring … Continue reading

Posted in iOS development | Leave a comment

Add existed XCode project to SVN repository

I’ve been bothered by this issue for a long time. And finally I’d decide to find the best practice today to do this job. Here are the steps: Step 1. Create SVN repository, for example, http://svn.domain.com/myrepo Step 2. Create XCode … Continue reading

Posted in iOS development | Leave a comment

UILabel 動態高度 Dynamic Height

UITableViewCell 有 heightForRowAtIndexPath 可以指定 但是實務上總是會碰到客戶的要求:「動態列高」 若是「想以文字內容決定 UILabel 的高度」 可以使用下面的程式 先用「文字,字型和寬度」(這點要事先決定,不然沒辦法算)計算出 UILabel 的高度 然後再用這個算出來的高度去 initWithFrame 搞定,收工放飯   +(float) getHeightForText:(NSString*) text withFont:(UIFont*) font andWidth:(float)width { CGSize constraint = CGSizeMake(width , 20000.0f); CGSize title_size; float totalHeight; SEL selector = @selector(boundingRectWithSize:options:attributes:context:); if ([text respondsToSelector:selector]) … Continue reading

Posted in iOS development | Leave a comment

不要再抓手機型號了,因為 iPhone6/6P 有 Zoom 果實能力

如果你會看到這篇文章 很有可能你是因為想判斷 iPhone 的不同型號 然後做不同的顯示(字體大小、間距….) 現在讓我告訴你 不要再這麼做了   因為東西南北有的沒有的原因 我落入了「判斷手機型號,然後寫不同的顯示 code」的地獄深淵 好不容易寫完了 交付使用者測試時卻發現「走鐘」現象 奇怪的是在模擬器上顯示一切正常   後來才知道 除了可以設定字體大小之外 iPhone 6/6P 還提供了 Zoom 的功能(註) (分成一般顯示和 Zoom 顯示) iPhone 6Plus 開啟 Zoom 模式,就等同 iPhone 6 的顯示方式 iPhone 6 開啟 Zoom 模式,就等同 iPhone 5S … Continue reading

Posted in iOS development | Leave a comment

[iOS 8 / iPhone 6(Plus)] Feedback is welcome.

Since iOS 8 / iPhone 6 (Plus) was released to the market, there would be some unexpected situation happened to all the iOS app. Please feel free to provide feedback about any issues regarding iOS 8 / iPhone 6 (Plus). … Continue reading

Posted in Dated Camera, 迷你跑馬燈, iOS development, 日期相片相機 | 4 Comments

[電視節目表] 修正 MOD 頻道資訊

修正 MOD 頻道資訊 1.原 95 台 DIVA Universal 改為 71 台 Universal 2.原 205, 230 頻道 下架   還好之前已經改過程式 現在只要更新資料 不需要重新上架 app 了 ^_^  

Posted in Android, 台灣電視節目表, iOS development | Comments Off on [電視節目表] 修正 MOD 頻道資訊

[電視節目表] 增加三個頻道節目資訊

2014-02-21 更新 增加 寰宇新聞頻道 增加 udn新聞頻道 增加 MTV Live 題外話 要更新資料時發現主機代管回應速度變慢 這家主機代管商還不錯 提供線上即時文字客服 重開 apache server 後就恢復正常 給他一個讚

Posted in Android, 台灣電視節目表, iOS development | Comments Off on [電視節目表] 增加三個頻道節目資訊

Submit Dated Camera Pro 2.2

Today we submit Dated Camera Pro (D-Camera Pro) 2.2 to the app store for review. There’s two features added in this version : 1.Camera selection (Front / Rear) 2.Flash mode selection (Auto / On / Off) There are some users … Continue reading

Posted in Dated Camera, iOS development | 13 Comments

Add Git Repository to existing XCode 4 project

Easy procedure, but sometimes it just takes you long time to do it right. Apple Developer Official Document

Posted in iOS development | Comments Off on Add Git Repository to existing XCode 4 project