Archive for the 'Uncategorized' Category
IOS Quick Tips: Adding your own action to the copy/paste menu
0 Comments Published July 18th, 2011 in UncategorizedAdding your own action to the copy/paste menu that is displayed when you touch down inside any editable control is pretty easy. Just add the code below to the viewDidLoad method inside your view controller. UIMenuItem *menuItem = [[UIMenuItem alloc] initWithTitle:@"Add picture" action:@selector(addPicture:)]; [[UIMenuController sharedMenuController] setMenuItems:[NSArray arrayWithObject:menuItem]]; [menuItem release];
The Reverse Alchemy website is officially live!
0 Comments Published February 27th, 2010 in UncategorizedThose of you who are amongst my regular visitors may have noticed already that the looks of my blog have changed rather dramatically. This is because since today, my blog is part of my company website. The website itself will be in Dutch only for the moment, for commercial reasons (meaning I don’t have any […]
I’ve spend the last few days building a set of Virtual PC’s running Windows 2008 to cater for my different development needs. As I was starting from scratch anyway, I spent some time researching ways to optimize the performance of my VPC’s. Andrew Connell has an excellent HOWTO on several ways to achieve better performing […]
Recent Comments