2010-10-22 01:21:17 +00:00
|
|
|
#import <QuartzCore/CATransition.h>
|
|
|
|
|
|
|
|
@implementation CATransition
|
|
|
|
|
2020-05-11 15:52:05 +00:00
|
|
|
- (NSString *) type {
|
|
|
|
return _type;
|
2010-10-22 01:21:17 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 15:52:05 +00:00
|
|
|
- (void) setType: (NSString *) value {
|
|
|
|
value = [value copy];
|
|
|
|
[_type release];
|
|
|
|
_type = value;
|
2010-10-22 01:21:17 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 15:52:05 +00:00
|
|
|
- (NSString *) subtype {
|
|
|
|
return _subtype;
|
2010-10-22 01:21:17 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 15:52:05 +00:00
|
|
|
- (void) setSubtype: (NSString *) value {
|
|
|
|
value = [value copy];
|
|
|
|
[_subtype release];
|
|
|
|
_subtype = value;
|
2010-10-22 01:21:17 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 15:52:05 +00:00
|
|
|
- (CGFloat) startProgress {
|
|
|
|
return _startProgress;
|
2010-10-22 01:21:17 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 15:52:05 +00:00
|
|
|
- (void) setStartProgress: (CGFloat) value {
|
|
|
|
_startProgress = value;
|
2010-10-22 01:21:17 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 15:52:05 +00:00
|
|
|
- (CGFloat) endProgress {
|
|
|
|
return _endProgress;
|
2010-10-22 01:21:17 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 15:52:05 +00:00
|
|
|
- (void) setEndProgress: (CGFloat) value {
|
|
|
|
_endProgress = value;
|
2010-10-22 01:21:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|