mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-02-12 09:20:14 +08:00
18 lines
352 B
Objective-C
18 lines
352 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import "RCTViewManager.h"
|
|
|
|
#import "RCTView.h"
|
|
|
|
@implementation RCTViewManager
|
|
|
|
- (UIView *)viewWithEventDispatcher:(RCTJavaScriptEventDispatcher *)eventDispatcher
|
|
{
|
|
return [[RCTView alloc] init];
|
|
}
|
|
|
|
RCT_EXPORT_VIEW_PROPERTY(accessibilityLabel)
|
|
RCT_EXPORT_VIEW_PROPERTY(pointerEvents)
|
|
|
|
@end
|