Claireware Software

Software for Your Mac and iPhone

Parental Gate SDK for iOS Apps

With the release of iOS 7, Apple updated it’s rules for apps being submitted to the iTunes App Store. One of the changes calls for a parental gate. I always envisioned that my apps targeted at toddlers were an activity that the parent and child did together, however, I realize that this is probably a romantic ideal. So, in order to comply with the new rules, I wrote a dexterity based parental gate that requires the user to touch two moving icons simultaneously. If the user fails to do so and touches anyway where else in the view, the gate will fail. Read More...
Comments

Social Sharing on iOS 6

The upcoming version of iOS 6 has built in ability for users to post information to various social media sites, such as Facebook, Twitter, and Weibo. In fact, Apple has added an entirely new framework in iOS 6, the Social framework, to help developers to add social sharing features to their apps.

I had the goal of making a simple way users of my apps could post to their social accounts about their usage of my apps. Nothing special, just a “I like this app” kind of thing. My design paradigm for my apps has been to use a grouped table view to hold an app’s configuration and other information, much like the Settings app. So my goal to introduce a social sharing feature was to make a fairly self contained table view cell that would enable a social sharing feature and could be easily “dropped in” to my configuration table views. I accomplished this with a class called MKSocialShareTableViewCell, which leverages the SLComposeViewController feature of the Social framework. I’ve added this class to the open sourced library iPhoneMK. You can download the code on github.

The basic usage paradigm for MKSocialShareTableViewCell is to add it as a cell you your table view as you would add any other cell (it should have its own reuse identifier), then you set the cell’s post test, images, and URLs. That’s it, as the cell will handle all user interaction.
Comments

Apps Not Making Sound

I very frequently get e-mails from people claiming that one or all of my iOS apps do not work because they do not make any sound. Increasingly, people are writing scathing reviews of my apps in the App Store because they say the apps are not making any sound. Read More...
Comments

Custom Animation with Sound - Take 2

I am developing a new iOS app where I needed an easy way to animate image sequences, move them, and have sound coordinated with it all. My first attempt at doing this was functional, but it did not use CAAnimation to control the image sequence. However, performance wasn't the best. So I rewrote the MKSoundCoordinatedAnimationLayer class to use CAAnimation internally to coordinate everything. Read More...
Comments

Custom Animation with Sound

For a project I am currently working on, I had the need to have more control over an animation sequence of images then what the built in support that UIView or CALayer provides. The import features I needed included sound coordination and heterogeneous frame durations. So, I wrote my own class to do this. Read More...
Comments
Site logo
Claireware Software
© 2009-2012 Michael Kamprath • Privacy PolicyLegalContact