Files
react-native/ReactKit/Views/RCTViewManager.m
Christopher Chedeau 00f0ebccdf 2015-02-30 update:
- [ReactNative] Fix indentation | Ben Alpert
- [ReactKit] Bring back ability to jump to syntax error from redbox | Alex Kotliarskyi
- [ReactKit] Update pthread.h import path to be (more?) correct | Ben Alpert
- Simplified event handling | Nick Lockwood
- [ReactNative] more readme - xcode error help | Spencer Ahrens
2015-02-03 16:03:21 -08:00

18 lines
342 B
Objective-C

// Copyright 2004-present Facebook. All Rights Reserved.
#import "RCTViewManager.h"
#import "RCTView.h"
@implementation RCTViewManager
- (UIView *)viewWithEventDispatcher:(RCTEventDispatcher *)eventDispatcher
{
return [[RCTView alloc] init];
}
RCT_EXPORT_VIEW_PROPERTY(accessibilityLabel)
RCT_EXPORT_VIEW_PROPERTY(pointerEvents)
@end