Initial clean commit

This commit is contained in:
2026-03-26 12:05:37 +08:00
commit 7c3c8dffee
1177 changed files with 147248 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
//
// UIVibrancyEffect+SellyCloud.m
// SellyCloudSDK_Example
//
// Created by Caleb on 28/10/25.
// Copyright © 2025 Caleb. All rights reserved.
//
#import "UIView+SellyCloud.h"
#import <MBProgressHUD/MBProgressHUD.h>
@implementation UIView (SellyCloud)
- (void)showToast:(NSString *)text {
MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self animated:YES];
hud.mode = MBProgressHUDModeText;
hud.label.font = [UIFont systemFontOfSize:14];
hud.label.text = text;
hud.label.numberOfLines = 0;
hud.margin = 15.f;
hud.removeFromSuperViewOnHide = YES;
[hud hideAnimated:YES afterDelay:2.0];
}
@end