
- Removed YuMi/Library/ (138 MB, not tracked) - Removed YuMi/Resources/ (23 MB, not tracked) - Removed old version assets (566 files, not tracked) - Excluded Pods/, xcuserdata/ and other build artifacts - Clean repository optimized for company server deployment
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
|