Tagged Questions
The ocd tag has no wiki summary.
5
votes
8answers
477 views
Is “else if” one whole or two separate keywords in Java?
I happen to read the practicing material for SCJP certification, and I just tripped over a chapter of flow control et al, where they give the impression that "else if" is a keyword on its own. I have ...
3
votes
3answers
1k views
UILabel shadow from custom cell selected color
So this is my problem: I'm loading a custom nib file to customize the cells of a UITableView. The custom nib has a UILabel that is referenced from the main view by tag. I would like to know if it is ...
3
votes
2answers
170 views
Programmatically execute vim commands?
I'm interested in setting up a TDD environment for developing Vim scripts and rc files. As a simple example, say I want to have vim insert 8 spaces when I press the tab key. I would set up a script ...
2
votes
3answers
1k views
NSURL analog to CFURLCreateCopyAppendingPathComponent?
Playing with URLs, more specifically building them incrementally from other, discovered URLs. In doing so, I'd like to stay using NSURL objects instead of manipulating NSStrings, just to gain the ...