Category Archives: iOS development

iOS development relative

New iOS app was released – Solitaire Black Jack

This is a casual and easy solitaire poker game app. It was designed for user to simply have fun without any other concerns. No need to pay or to buy anything, just enjoy the game and have fun. Any comments … Continue reading

Posted in iOS development, Solitaire Black Jack | Leave a comment

新 App 上架 – PokerRember撲克牌記憶

App 名稱:PokerRember撲克牌記憶 這是一個益智性質的遊戲 App 不用隨時帶著一副撲克牌也能練習撲克牌的記憶 這是一個方便記憶撲克牌的APP,功能包括對答案以及紀錄,需要自己上網學習撲克牌的記憶法,了解後便可以使用此APP做練習 以下是遊戲畫面,您可以清楚地看到撲克牌的花色(Spade, Heart, Diamond, Club)和數字,並且練習在腦中記憶下來 下方的數字是記錄您花費的時間 在心中記憶完成之後,再依序將記憶的牌填在空格中,如下圖所示 填完後可以點綠色問號按鈕以進行核對答案及評分 只要多加練習,您也可以是記憶高手!!!

Posted in Admob, Android, iOS development, 撲克牌記憶 | Tagged , , , | Leave a comment

iOS AppStore Connect Resolution Center URL

All these years, this is the first time that I didn’t receive notification email from AppStore Connect about app review rejection. I just found that my email account not working because of out of disk space. Because there’s no “resolution … Continue reading

Posted in iOS development | Tagged , , , , | Leave a comment

iOS deprecated API – UIWebView

New/update app will reject any app using UIWebView after 2020/Dec. Here’s a simple script to find all UIWebView references in current project. Just execute this line in the project root directory. grep -r UIWebView .

Posted in iOS development | Tagged , | Leave a comment

AdMob force to adapt newest SDK version

I used to adpat current available AdMob SDK version for new project. Because it works and I am lazy. Today I found that AdMob won’t display AD Banner when I adapt old version (7.25.0). After I download the newest verion … Continue reading

Posted in iOS development | Leave a comment

Interface Builder high CPU usage hang Mac OS X

The MacBook Pro almost hang the other day, press a key or click some function then the cursor turned into spinning rainbow. Check the cpu usage in terminal console and find that “Interface Builder” was the highest cpu usage process. … Continue reading

Posted in iOS development | Leave a comment

2017/12 iPhone X/iOS 11 改版記錄

每次 Apple 出新機或是新版 iOS 我就頭痛 幾乎所有的app都得要拿出來renew一遍 再加上Google Admob沒事就改版 這個月光是把一些還活著的app Refresh一下就飽了 以下是 Refresh App 過程中碰到的問題及解決方法 記錄下來以免以後又重覆碰到 1.git – Commit Failed – cannot communicate to the command line helper 在 Project 目錄(有 .git 檔案那層)下指令 git commit -a -m “commit message” 2.iTunes Connect … Continue reading

Posted in iOS development | Leave a comment

XCode from SVN to Git (BitBucket), Step by Step

1.(Terminal) git svn clone http://svn.domain.com/svnroot/ 2.(BitBucket) Create repository, get repository url 3.(XCode) Open project (cloned in step 1) 4.(XCode) Add Existing Remote The Location was the URL you got in step 2 (on top right corner) 5.(XCode) Source Control -> … Continue reading

Posted in iOS development | Leave a comment

SVN command line usage sample

1.To checkout a verison in date 2017/12/25 svn co -r {2017-12-25} http://mydomin.com/svntree 2.To checkout a revision 168 in date 2017/12/25 svn co -r 168 http://mydomin.com/svntree  

Posted in Android development, iOS development | Leave a comment

iOS – Click view to dismiss the keyboard

    UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self.view action:@selector(endEditing:)];     tap.cancelsTouchesInView = FALSE;     tap.delegate = self;     [self.view addGestureRecognizer:tap];

Posted in iOS development | Leave a comment