About This
I am Michael Tyson, and I run A Tasty Pixel. I write on a variety of technology and software development topics as I travel around Europe in a motorhome.
-
Subscribe to updates 242 feed subscribers
Follow me on Twitter 439 followers
Newsletter
Let us keep you informed about important updates, special offers, and new products. Just type in your email address below and hit enter to sign up!
My Products
Popular Posts
- "Elegant Grunge" Wordpress theme
- UIImage, resolution independence and the iPhone 4's Retina display
- Using RemoteIO audio unit
- Smart 404 for Wordpress
- Connecting an iMac up to your TV
- Easy rounded corners on UITableViewCell image view
- Flickrpress: Wordpress Flickr widget
- Custom Permalinks
- Making UIToolbar and UINavigationBar's background totally transparent
- Galleria for Wordpress
Tag Archives: Mac
iPhone debugging tip: Breaking on exceptions and reading their content
Just a quick one: This may be obvious to many devs, but it’s worth noting. One common and useful debugging technique is breaking on exceptions, so that you can see exactly where in your app’s flow a breakpoint occurs. This can be done by adding -[NSException raise] and objc_exception_throw to your breakpoints list. Once an [...]
Also tagged Cocoa, Debugging, Development, iPhone Leave a comment
iPhone/Mac animation for custom classes: Property animation for more than just CALayer
An Objective-C class that provides similar functionality to CABasicAnimation, but works on any object.
Also tagged Animation, Cocoa, Code, Development, Graphics, iPhone Leave a comment
Reginald RegEx explorer
With a desperate need to debug a lengthy regular expression destined for use with the excellent RegexKitLite library, I have quickly put together a Mac OS X application. Reginald is a kindly old gentleman devoted to assisting you with those tricky regular expressions. Provide some sample input, and your regular expression, and Reginald will provide [...]
Also tagged Debugging, Development, Regex, Software Leave a comment
OS X service to filter selected text through a shell command
The UNIX shell provides a host of extremely useful utilities for modifying text. This Automator service makes all of them available for filtering text in all OS X applications.
Also tagged Scripts, Shell, Workflow 11 Comments
The Making of Talkie: Multi-interface broadcasting and multicast
Part 2 Talkie is my newest product, a Walkie Talkie for iPhone and Mac. In Part 1 of this series, I wrote about basic broadcasting. This works fine with one network device, but it’s worth discussing how to send through all devices, so you can communicate with others connected via, say, Ethernet and WiFi simultaneously. [...]
Also tagged Broadcast, Cocoa, Development, iPhone, Multicast, networking, Software, Talkie, Talkie-for-Mac, Tutorial Leave a comment
The Making of Talkie: Broadcasting
Part 1 Talkie is my newest product, the result of a collaboration with a good designer friend, Tim Churchward, who did the user interface. Talkie is a little different from many of the other walkie talkie applications on the App Store (aside from the fact that much of it was written by me from our [...]
Also tagged Broadcast, Cocoa, Development, iPhone, networking, Software, Talkie, Talkie-for-Mac, Tutorial 3 Comments
DIY Twitter image hosting
Twitter doesn’t yet come with its own inline image support, so we tend to be limited to using image hosting services, and linking to them with short URLs. So, services like Tweetpic host the image, and we direct traffic to them in return. Thinking it’s better to keep things in the family, and take better [...]
Also tagged Twitter, Web, Workflow 2 Comments
Easy Delayed Messaging using NSProxy and NSInvocation