1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

Init project.

This commit is contained in:
jaywcjlove
2020-07-31 14:47:29 +08:00
commit 43c08e759c
76 changed files with 10862 additions and 0 deletions

13
ios/RNWechat.m Normal file
View File

@@ -0,0 +1,13 @@
#import "RNWechat.h"
@implementation RNWechat
RCT_EXPORT_MODULE()
RCT_EXPORT_METHOD(sampleMethod:(NSString *)stringArgument numberParameter:(nonnull NSNumber *)numberArgument callback:(RCTResponseSenderBlock)callback)
{
// TODO: Implement some actually useful functionality
callback(@[[NSString stringWithFormat: @"numberArgument: %@ stringArgument: %@", numberArgument, stringArgument]]);
}
@end