Well, this is embarrassing. You might have expected to find my homepage here. In fact I am currently too busy studying, writing iOS apps or working on other projectserver.org projects to create my own homepage. You may return whenever you like to check if that has changed somehow. Up to then, everything you find here is just a sophisticated twitter newsfeed. Enjoy.

When I came across the Twitter App for iPhone, I saw something I immediately wanted to have for my own app: UITableViewCells acting like ComboBoxes, opening on tap, closing when a new option is chosen. The idea was so nice that I decided to write a small prototype which can now be found at a public github repository of mine. There is also some basic documentation that might be useful for those who want to re-implement this code.
The key facts in a nutshell:
switch ([indexPath row]) {
case 0: {
// return the ComboBox cell here
break;
}
default: {
// return the Option cells here
break;
}
}
If you’re interested, feel welcome to check the full prototype and it’s documentation in the repository.
NIGHTNIGHT by DEDDY