Browsing archives for 'Objective-C'

A handy way to dismiss keyboard

iOS Development,Objective-C 6 February 2012 0 Comments

This method looks at the current view and its subview hierarchy for the text field that is currently the first responder. If it finds one, it asks that text field to resign as first responder. If the force parameter is set to YES, the text field is never even asked; it is forced to resign. [...]

Enable SQL Debugging in Xcode4

iOS Development,Mac OS X,Objective-C 6 September 2011 0 Comments

If you would like to output the SQL being generated by Core Data, here is the quick steps: Go to Product -> Edit Scheme Choose Run YourAppName.app Add -com.apple.CoreData.SQLDebug 1 to the Arguments Passed On Launch panel

Limit the size of UITextField

iOS Development,Mac OS X,Objective-C 27 August 2011 0 Comments

https://gist.github.com/1175468

XML Date to CoreData NSDate

iOS Development,Objective-C 26 June 2011 0 Comments

Here is code snippet to parse a XML string to Core Data NSDate.