mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2026-02-16 10:31:02 +00:00
19 lines
381 B
Objective-C
19 lines
381 B
Objective-C
//
|
|
// TextFieldKeyboardDelegate.h
|
|
// Moonlight
|
|
//
|
|
// Created by Cameron Gutman on 3/24/20.
|
|
// Copyright © 2020 Moonlight Game Streaming Project. All rights reserved.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface TextFieldKeyboardDelegate : NSObject<UITextFieldDelegate>
|
|
|
|
- (id)initWithTextField:(UITextField*)textField;
|
|
- (NSArray<UIKeyCommand *> *)keyCommands;
|
|
|
|
@end
|