Markdown is a format commonly used for help or informational files. It has been commonly used for open source projects and provides a simple, intuitive way to provide readible readmes […]
More →Markdown is a format commonly used for help or informational files. It has been commonly used for open source projects and provides a simple, intuitive way to provide readible readmes […]
More →NSNotification provides a simple of way of messaging within an iOS application. Create Notification Observer Register a function to handle notifications and inside of viewWillAppear or other initializing method.
1 |
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleNotification:) name:@"Notification Name" object:nil]; |
[…]
More →Many websites offer apps as either an alternative view or as the actual service offered for mobile devices. Sometimes the offering comes in the form of annoying popups that take […]
More →Adding a simple file in the home directory of either OSX or linux allows partial terminal commands to become searchable. Inside of ~/.inputrc add:
1 2 3 4 |
"\e[A": history-search-backward "\e[B": history-search-forward set show-all-if-ambiguous on set completion-ignore-case on |
Objective-C has a nice way of auto-generating getters and setters with the use of @proerty in the @interface and @synthesize in the @implementation. Just by adding two lines of code, […]
More →Through the development of the Apple SDK and all the iterations of different Macros to auto-generate singletons, there is now a simple, straight-forward way of adding singletons to any Objective-C […]
More →Teehan+Lax maintains an iPhone PSD template for app mockups. This template provides all the iPhone buttons and widgets to create any conceivable app mockup in Photoshop. It is an excellent […]
More →Out of the box, the standard Moai Untz audio needs some tweaking in order to get things going. Perhaps it is because the Moai developers assumed that everyone developing with […]
More →