Posted by jsz on June 24, 2010
So iOS 4.0 broke the “numeric keypad with decimal point”-hack. To verify that the UIKeyboardView was removed somehow from the app’s view hierarchy I wrote a small function. Yeah, looks like there’s no keyboard view in the hierarchy
Nevertheless I found the method handy. So here it is:
void enumerateSubviews (id viewlol)
{
static int [...]
Posted by jsz on January 13, 2010
Yep, what happens if the user enters wrong credentials? As a developer you have to test this possibility in your app and implement error handling. Well … error testing with twitter is somehow annoying:
Posted by jsz on January 5, 2010
Some time ago I had some free time and I started up World of Warcraft to overcome my boredom. Well seems like World of Warcraft is a terrific source of boredom too.
After some time lying on my couch I asked myself if I could control the WoW running on my Mac from the couch – [...]
Posted by jsz on October 31, 2009
If you ever wondered what the OS X equivalent to Window’s ReadProcessMemory() and WriteProcessMemory() is you might had a rather sobering research experience on this topic.
After googling for all possible combinations of “read memory, OS X, ReadProcessMemory(), etc, …” the only information I found were posts in forums where somebody with that problem only got [...]