You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
583 B
27 lines
583 B
// |
|
// MinPlugin.h |
|
// Runner |
|
// |
|
// Created by 冯美坎 on 2021/7/7. |
|
// |
|
|
|
#ifndef MinPlugin_h |
|
#define MinPlugin_h |
|
|
|
#import "DCUniMP.h" |
|
#import <Flutter/Flutter.h> |
|
#import "AFNetworking.h" |
|
|
|
|
|
#endif /* MinPlugin_h */ |
|
|
|
@interface MinPlugin:NSObject <DCUniMPSDKEngineDelegate> |
|
|
|
-(void)open:(NSString*)appid url:(NSString*)wgtUrl param:(NSDictionary*)dict block:(void (^)(void))block; |
|
|
|
-(void)downloadWgt:(NSString *)url appid:(NSString*)appid block:(void (^)(NSString * tips))block success:(void (^)(void))success; |
|
|
|
-(void)openUniApp: (NSString*) name dict:(NSDictionary *)dict; |
|
|
|
@end |
|
|
|
|