23 lines
391 B
Objective-C
23 lines
391 B
Objective-C
//
|
|
// MSRTL.m
|
|
// YuMi
|
|
//
|
|
// Created by duoban on 2024/4/11.
|
|
//
|
|
|
|
#import "UIImage+MSRTL.h"
|
|
|
|
@implementation UIImage (MSRTL)
|
|
|
|
|
|
- (UIImage *)ms_SetImageForRTL {
|
|
if (isMSRTL()) {
|
|
return [UIImage imageWithCGImage:self.CGImage
|
|
scale:self.scale
|
|
orientation:UIImageOrientationUpMirrored];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|