forked from yaypixxo/RoundedPageDots
12 lines
166 B
Plaintext
12 lines
166 B
Plaintext
#import <UIKit/UIKit.h>
|
|
|
|
@interface _UILegibilityView : UIView
|
|
-(UIImageView *)imageView;
|
|
@end
|
|
|
|
%hook UIPageControl
|
|
-(double)_modernCornerRadius {
|
|
return 1;
|
|
}
|
|
|
|
%end |