iphone
-
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… Continue reading
-
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”;}’… Continue reading
-
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… Continue reading
-
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… Continue reading
-
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. Continue reading
-
My first iPhone App is on live now!
Finally!!!! You can find details in >>>HERE!!!<<< Continue reading
-
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… Continue reading
-
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… Continue reading
-
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/… Continue reading
About Me
A software engineer who loves any technologies that makes life easier. That’s why I love Linux and Mac at the same time.
Recent Posts
- How to find the actual memory usage by each process
- How to check memory usage in Linux – part 1.2 – Per-process level memory usage check
- How to check memory usage in Linux – part 1.1 – System level memory usage check
- How to check memory usage in Linux – part 1. User space
- How to track SLAB usage using slub_debug=U