mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 17:15:54 +00:00
9e6e573e19
Summary: Continuation on #3959 (started by cancan101). Rebased to latest master, adds support for left system icon, fixes issues mentioned in previous PR. <img width="432" alt="screen shot 2016-09-05 at 13 54 41" src="https://cloud.githubusercontent.com/assets/7275322/18248478/5b7aa25c-7370-11e6-8c51-01a2b7fd1030.png"> Closes https://github.com/facebook/react-native/pull/9742 Differential Revision: D3836850 Pulled By: javache fbshipit-source-id: ef9f6e42211ed18bf5f3dc1eb7a8b1318d939674
23 lines
523 B
Objective-C
23 lines
523 B
Objective-C
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#import "RCTViewManager.h"
|
|
|
|
#import "RCTConvert.h"
|
|
|
|
@interface RCTConvert (BarButtonSystemItem)
|
|
|
|
+ (UIBarButtonSystemItem)UIBarButtonSystemItem:(id)json;
|
|
|
|
@end
|
|
|
|
@interface RCTNavItemManager : RCTViewManager
|
|
|
|
@end
|