-
Notifications
You must be signed in to change notification settings - Fork 59
Migration
This page will describe how to migrate from your current version of RMActionController to the latest version of RMActionController.
This update disabled the blur effects for the background by default. If you want this blur effect to be enabled you need to set disableBlurEffectsForBackground
to false
.
No migration required
No migration required
No migration required
The definition of RMAction changed a little bit. Previously it looked like follows:
@interface RMAction<T : RMActionController<UIView *> *> : NSObject
To make RMActionController compatible with Swift 3 it changed to this definition:
@interface RMAction<T : UIView *> : NSObject
As you can see, RMActionController has been dropped from the generic type. Now let's assume you have a subclass of RMActionController called MapActionController defined as follows:
@interface RMMapActionController : RMActionController<MKMapView *>
@end
Then your code to initialize a RMAction instance for your MapActionController should look like one of the following two examples:
RMAction *selectAction = [RMAction<RMActionController<MKMapView *> *> actionWithTitle:@"Select" style:RMActionStyleDone andHandler:^(RMActionController<MKMapView *> *controller) {
NSLog(@"Action controller selected location: %f, %f", controller.contentView.centerCoordinate.latitude, controller.contentView.centerCoordinate.longitude);
}];
or
RMAction *selectAction = [RMAction<MapActionController *> actionWithTitle:@"Select" style:RMActionStyleDone andHandler:^(MapActionController *controller) {
NSLog(@"Action controller selected location: %f, %f", controller.contentView.centerCoordinate.latitude, controller.contentView.centerCoordinate.longitude);
}];
As RMActionController version 1.1 dropped RMActionController from the generic of RMAction, you need to drop that reference, too. So your new code should look like follows:
RMAction *selectAction = [RMAction<MKMapView *> actionWithTitle:@"Select" style:RMActionStyleDone andHandler:^(RMActionController<MKMapView *> *controller) {
NSLog(@"Action controller selected location: %f, %f", controller.contentView.centerCoordinate.latitude, controller.contentView.centerCoordinate.longitude);
}];
No migration required
No migration required
No migration required
No migration required
No migration required