mirror of
https://github.com/status-im/react-native.git
synced 2025-01-29 18:54:58 +00:00
21 lines
458 B
C
21 lines
458 B
C
|
//
|
||
|
// RCTSegmentedControl.h
|
||
|
// React
|
||
|
//
|
||
|
// Created by Clay Allsopp on 3/31/15.
|
||
|
// Copyright (c) 2015 Facebook. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@class RCTEventDispatcher;
|
||
|
|
||
|
@interface RCTSegmentedControl : UISegmentedControl
|
||
|
|
||
|
- (instancetype)initWithEventDispatcher:(RCTEventDispatcher *)eventDispatcher NS_DESIGNATED_INITIALIZER;
|
||
|
|
||
|
@property (nonatomic, copy) NSArray *values;
|
||
|
@property (nonatomic, assign) NSInteger selectedIndex;
|
||
|
|
||
|
@end
|