mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
26 lines
534 B
Objective-C
26 lines
534 B
Objective-C
//
|
|
// NativeSearchNavItem.h
|
|
// RobloxMobile
|
|
//
|
|
// Created by Kyler Mulherin on 11/10/14.
|
|
// Modified from code by Ariel Lichten.
|
|
// Copyright (c) 2014 ROBLOX. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "RobloxData.h"
|
|
|
|
@interface NativeSearchNavItem : UIBarButtonItem
|
|
|
|
typedef NS_ENUM(NSInteger, SearchStatus)
|
|
{
|
|
SearchStatusOpen,
|
|
SearchStatusClosed
|
|
};
|
|
|
|
- (id)initWithSearchType:(SearchResultType)searchType
|
|
andContainer:(UIViewController*)target
|
|
compactMode:(BOOL)compactMode;
|
|
|
|
@end
|