File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed
Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 3131
3232 The animation will be always linear.
3333
34+ @note See this as declared abstract. This MUST be overriden in subclasses.
35+
3436 @param progress The new progress value.
3537 @param animated Specify YES to animate the change or NO if you do not want the change to be animated.
3638 */
Original file line number Diff line number Diff line change 1111
1212@implementation MRProgressView
1313
14+ - (void )setProgress : (float )progress animated : (BOOL )animated {
15+ @throw [NSException exceptionWithName: NSInternalInconsistencyException
16+ reason: [NSString stringWithFormat: @" You must override selector '%@ ' in %@ or a intermediate class!" ,
17+ NSStringFromSelector (_cmd ), NSStringFromClass (self .class)]
18+ userInfo: nil ];
19+ }
20+
1421@end
You can’t perform that action at this time.
0 commit comments