Search Results

8
votes

What are those little Xcode tips & tricks you wish you knew about 2 years ago?

Might go without saying, but if you want to use intra-word navigation, make sure you change the key presets in for Spaces (in the Expose & Spaces preference pane), if you use it. I swit …
8
votes

How do you document your source code in Xcode?

I use Doxygen and Doxyclean to generate cleaner, more Apple-like documentation that what Doxygen natively produces. …
1
vote

How to prevent a UiView from sliding down underneath the TableView?

To build off gabtub's answer, the UIView containing your table view and your bottom view doesn't need to implement the UITableViewDelegate and UITableViewDataSource methods. Since it sounds …