mirror of
https://github.com/wu736139669/RN_AWord.git
synced 2026-08-05 06:24:39 +00:00
22 lines
403 B
Objective-C
22 lines
403 B
Objective-C
//
|
|
// ASHUtilManager.m
|
|
// testdemo
|
|
//
|
|
// Created by xmfish on 16/2/22.
|
|
// Copyright © 2016年 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import "ASHUtilManager.h"
|
|
#import <UIKit/UIKit.h>
|
|
@implementation ASHUtilManager
|
|
|
|
RCT_EXPORT_MODULE();
|
|
|
|
//复制文本
|
|
RCT_EXPORT_METHOD(pasteWithText:(NSString*)text)
|
|
{
|
|
UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
|
|
pasteboard.string = text;
|
|
}
|
|
@end
|