- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
44 lines
1.4 KiB
Objective-C
44 lines
1.4 KiB
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
#ifdef RCT_NEW_ARCH_ENABLED
|
|
#import <React/RCTViewComponentView.h>
|
|
#import <react/renderer/components/rnscreens/RCTComponentViewHelpers.h>
|
|
#endif
|
|
|
|
#import <React/RCTBridge.h>
|
|
#import <React/RCTComponent.h>
|
|
#import <React/RCTViewManager.h>
|
|
#import "RNSEnums.h"
|
|
|
|
@interface RNSSearchBar :
|
|
#ifdef RCT_NEW_ARCH_ENABLED
|
|
RCTViewComponentView <UISearchBarDelegate, RCTRNSSearchBarViewProtocol>
|
|
#else
|
|
UIView <UISearchBarDelegate>
|
|
#endif
|
|
|
|
@property (nonatomic) BOOL hideWhenScrolling;
|
|
@property (nonatomic) RNSSearchBarPlacement placement;
|
|
@property (nonatomic, retain) UISearchController *controller;
|
|
|
|
#if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && defined(__IPHONE_16_0) && \
|
|
__IPHONE_OS_VERSION_MAX_ALLOWED >= __IPHONE_16_0 && !TARGET_OS_TV
|
|
- (UINavigationItemSearchBarPlacement)placementAsUINavigationItemSearchBarPlacement API_AVAILABLE(ios(16.0))
|
|
API_UNAVAILABLE(tvos, watchos);
|
|
#endif // Check for iOS >= 16 && !TARGET_OS_TV
|
|
|
|
#ifdef RCT_NEW_ARCH_ENABLED
|
|
#else
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onChangeText;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onCancelButtonPress;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onSearchButtonPress;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onFocus;
|
|
@property (nonatomic, copy) RCTBubblingEventBlock onBlur;
|
|
#endif
|
|
|
|
@end
|
|
|
|
@interface RNSSearchBarManager : RCTViewManager
|
|
|
|
@end
|