Apple says that CIFilter is available in iOS. However, on my mac I couldn't find an CoreImage framework to link against.
filter An optional Core Image filter object that provides the transition.
@property(retain) CIFilter *filter
i.e. when I try to do something like this, it crashes because CIFilter is unknown:
[transition setFilter:[CIFilter filterWithName:@"CIShapedWaterRipple"]];
I linked against:
#import <UIKit/UIKit.h>
#import <QuartzCore/QuartzCore.h>
#import <CoreGraphics/CoreGraphics.h>