 Your new post is loading...
|
Scooped by
Domsware
|
NSLogger is a high perfomance logging utility which displays traces emitted by client applications running on Mac OS X or iOS (iPhone OS). It replaces your usual NSLog()-based traces and provides powerful additions like display filtering, image and binary logging, traces buffering, timing information, etc.
|
Scooped by
Domsware
|
SECoreTextView is multi-line rich text view library with clickable links, selectable text and twitter style demo apps.
|
Scooped by
Domsware
|
|
Scooped by
Domsware
|
|
Scooped by
Domsware
|
Introduction This article explores a simple genetic algorithm I wrote in Objective-C. The purpose of this article is to introduce the basics of genetic algorithms to someone new to the topic, as we...
|
Scooped by
Domsware
|
Monitor your app and experiment in a way you never thought possible. Add our framework to your Xcode project, and the Spark Inspector will offer you an entirely new debugging perspective. With a three-dimensional view of your app's interface and the ability to change view properties at runtime, Spark can help you craft the best apps on earth. Wiring your app together with notifications? Spark's notification monitor shows you each NSNotification as it's sent, complete with a stack trace, a list of recipients and invoked methods, and more. Understand app structure at a glance and debug smarter. That's Spark.
|
Scooped by
Domsware
|
Learn how to use iOS scroll views to present content larger than a screen - from beginner to advanced.
|
Scooped by
Domsware
|
|
Scooped by
Domsware
|
sketch-ios - iOS Templates
|
Scooped by
Domsware
|
GCManager - CGManager - Manager class for Apple GameCenter that makes life easier
|
Scooped by
Domsware
|
The most often used gestures in iOS and other touch based platforms.
|
Scooped by
Domsware
|
It is not actually a trivial task at first glance. Standard [aView addSubview:gifView] will not do the job. For that reason Cocoa Touch provides a quite smart U
|
Scooped by
Domsware
|
|
|
Scooped by
Domsware
|
TextExpander is most useful when it’s available for text entry everywhere, as it is on Mac OS X. Given the current restrictions of the iOS, it’s not possible to make TextExpander touch work that way. We’ve focused on making TextExpander touch work well for composing text, then sending it directly to Mail, Twitter clients, or via copy & paste to any other application.
|
Scooped by
Domsware
|
Briefs is the best app for designing mobile apps; it’s also the best for communicating those designs to the rest of the world. A design is only as effective as the developer that builds it. Don’t leave it to chance, let Briefs do the heavy lifting.
|
Scooped by
Domsware
|
Hey developers, know what your apps and 1Password for iOS have in common? They're two great tastes that taste even better together, thanks to some of the URL schemes we added to 1Password 4.1 for i...
|
Scooped by
Domsware
|
R.U.B.E stands for Really Useful Box2D Editor. This editor allows you to graphically manipulate a Box2D world and save it to a file. You can then load the saved file in your game/app and run the world. R.U.B.E can create any physics scene that Box2D itself can, with the exception that some joint types are currently not supported.
|
Scooped by
Domsware
|
UIImage is one of the most commonly used classes in iOS development. It is generally used for drawing icons, backgrounds, etc. However, not all developers realize how powerful this simple class may become with a proper approach.
|
Scooped by
Domsware
|
A free font browsing tool, created by Touch Code Magazine (Tutorials and excerpts about iPhone and iPad programming in Objective-C and Cocoa Touch)
|
Scooped by
Domsware
|
In this blog post, I am going to talk about implementing UITableViewController using open-source extension MwfTableViewController that I have implemented. The posts will be published in multiple pa...
|
Scooped by
Domsware
|
GPUImage - An open source iOS framework for GPU-based image and video processing
|
Scooped by
Domsware
|
We've conditioned ourselves to believe that a $5 app is expensive, and that free apps are better than paid ones. Lex Friedman says we've got to break that habit.
|
Rescooped by
Domsware
from Core data
|
Many veteran developers have learned their lesson and given up on iCloud's Core Data syncing entirely. “Ultimately, when we looked at iCloud + Core Data for [our app], it was a total no-go as nothing would have worked,” ...
Via fredio31
|
Scooped by
Domsware
|
A UIImage category that loads animated GIFs. Contribute to uiimage-from-animated-gif development by creating an account on GitHub.
|
Scooped by
Domsware
|
Phosphor is a new way to bring animation and video to the web. Starting with the video track of a standard QuickTime file, Phosphor creates cross platform, web-standards compliant assets which can be played on desktop and mobile devices without plugins or even video decoding capabilities. As long as a browser supports Javascript and the ability to show images, it can display Phosphor content.
There’s dispatch_sync to do some work synchronously. There’s also dispatch_once that’s used to guarantee that something happens exactly once, no matter how violent the program’s threading becomes. It’s actually a very simple idiom: static dispatch_once_t onceToken; dispatch_once (&onceToken, ^{ // Do some work that happens once });
Via Vincent Demay
|