-
Updated github viewer is available
There was an issue with the GithubView for several months (Honestly speaking, almost a year). It failed to communicate with github.com as the server changed Open API. I didn’t have time to fix this issue as I’m doing it only during my spare time and it was quite busy recently. But, here we are. A […]
-
Howto change __MyCompanyName__ in your project with Xcode
You might doesn’t like the comment at the top of your Xcode project files. // // ViewController.m // CITest // // Created by Sungju Kwon on 4/21/12. // Copyright (c) 2012 __MyCompanyName__. All rights reserved. // I’ve checked the internet for the possible solution, and I could find below. defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions ‘{ORGANIZATIONNAME=”Sungju Kwon”;}’ […]
-
Xcode 4.3.2 organizer crash
After upgrading to Xcode 4.3.2, it becomes very hard to keep developing without crash. Most biggest challenge was configuring iPhone devices in Organizer window. It crashed all the time when I tried to open ‘Device’ tab. Sometimes, it just crashed when I plug my iPhone to the system. It looks like it has a problem […]
-
Using single-tap and double-tap in the same view
If you are going to use two similar gestures in a view, it could cause the problem. For example, in the following code snippet, I tried to use single tap for changing screen mode while double tap is used to toggle bookmark flag. [self.svContent addGestureRecognizer:toggleFavoriteTap]; [self.svContent addGestureRecognizer:toggleFullScreenTap]; But, there’s one problem with this. When you […]
-
Github Client for iPhone is available now.
I’m happy to announce that github client for iPhone is on AppStore now. You can download it from here. With this, you can view several repositories and changes in it. Of course, you can check your own repositories as well.
-
My first iPhone App is on live now!
Finally!!!! You can find details in >>>HERE!!!<<<
-
Stack Exchange Client for iPhone
As a developer/engineer, I spent quite some time on stackoverflow.com. When I try to search something on google, it also forwarded me to stackoverflow.com. This site has really great resources with very clear interface. There are also some other topics that cover with stackexchange API such as Gaming, Photography, and Cooking. So, I decided to […]
-
Use TabBar and Navigation Controller at the same time
Interface Builder is a great tool to minimize your typing and make you see the output before you compile it. But, sometimes, it blocks you to implement your thought clearly. Combining TabBar and NavigationBar is one of those cases. If you want to use TabBar, you easily can make it using Interface Builder, but Interface […]
-
Some useful web links for iPhone development
Developing something needs lots of energy and information. Even though you are familiar with iPhone development, you might need some help for the area you are not familiar with but just got a new project you need to finish on time. Following web sites can be helpful to get an answer for your problems. http://developer.apple.com/ […]