Files
UnrealEngine/Engine/Source/Runtime/WebBrowser/Private/IOS/WebViewCloseButton.h
2025-05-18 13:04:45 +08:00

24 lines
392 B
Objective-C

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#if PLATFORM_IOS
#if !PLATFORM_TVOS
#import <UIKit/UIKit.h>
@interface WebViewCloseButton : UIView
@property (nonatomic, copy) void (^TapHandler)(void);
- (void)setupLayout;
- (void)showButton:(BOOL)bShow setDraggable:(BOOL)bDraggable;
@end
WebViewCloseButton* MakeCloseButton();
#endif
#endif