I have created a library which can download JSON data which is then placed into an NSDictionary. I wrap this class with a simple Twitter engine which allows me to pull my friends timeline, post an upd
Closed. This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the questi开发者_JAVA技巧on so it can be answered with facts and citati
Disclaimer: I know that Thread.Abort is evil. I\'m using it as a last resort since some I/O functions (e.g., File.Exists when used on a non-existing network share) block for a large amout of time and
I am building an application that has to handle the parsing of several different kinds of XML files. As I want to standardize the procedure as much as possible, I created a singleton class which handl
I\'m trying to set the delegate for a scroll view using Interface Builder. If I have code like this: MyScrollViewDelegate * delegate = [[MyScrollViewDelegate alloc] init];
I would like to create a Webview where I have total control over the content it loads.Essentially I want to provide an instance of a class that plays the role of the various web servers named in the U
I\'m trying to do an asynchronous request with ASIHTTPRequest, but have some problem getting notified when the request is done.
I am trying to learn some WCF principles by following an example of a WCF application (from Sacha Barber).
Scenario: I have 4 UITextFields that only accept 1 character. Easy. Problem: After I enter the 1 character, I want the next TextField to become active automatically without having to press next (i.e.
I have a mainMenu.xib - that sets up all my interface items (button, textfields, etc). I have a LogController that has access to all these items via IBOutlet and IBAction.