25 lines
		
	
	
		
			500 B
		
	
	
	
		
			Objective-C
		
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			500 B
		
	
	
	
		
			Objective-C
		
	
	
	
| //
 | |
| //  UUIDManager.h
 | |
| //  Unity-iPhone
 | |
| //
 | |
| //  Created by fotoable on 2020/6/29.
 | |
| //
 | |
| 
 | |
| #import <Foundation/Foundation.h>
 | |
| //#import "JKRBDMuteSwitch/RBDMuteSwitch.h"
 | |
| 
 | |
| NS_ASSUME_NONNULL_BEGIN
 | |
| 
 | |
| @interface NativeTool : NSObject//<RBDMuteSwitchDelegate>
 | |
| 
 | |
| typedef void (^BoolResultDel)(BOOL);
 | |
| 
 | |
| +(NativeTool *) getInstance;
 | |
| 
 | |
| -(void)shake:(int)pType Intensity:(float)pIntensity;
 | |
| -(void)shareWithTitle:(NSString *)pTitle Url:(NSString *)pUrl ResultCallback:(BoolResultDel)pResultDel;
 | |
| 
 | |
| @end
 | |
| 
 | |
| NS_ASSUME_NONNULL_END
 |