Custom UINavigationBar background
Posted by Pawel Dudek in uikit on July 22, 2011
A while ago I came across an interesting problem – I had to provide a custom background graphics (graphics, not color) for UINavigationBar instance. Since you can only change the tint color of navigation my first hit was to use [UIColor colorWithPatternImage:]. Results however weren’t exactly what I was looking for – it looked ugly. [...]
XCode number of lines in project
Posted by Pawel Dudek in xcode on August 20, 2010
Ever wondered what’s the number of lines in your XCode project? Just move to Classes folder for your application and call: wc -l *.[hm] And it’s done! It will count all the lines for every project file, and then sum them up. Be sure to remember that this will work only if you have all [...]
Apple and developers
Posted by Pawel Dudek in Other on May 30, 2010
Of Apple, UDIDs cap limit, and treating developers.
Table view cell custom selection graphics and its animation
Posted by Pawel Dudek in iphone sdk on May 30, 2010
A short tutorial on animating cells selection/deselection.