From 128e258845e8a73473fd3d8c7694513bf2058f3e Mon Sep 17 00:00:00 2001 From: reuk Date: Mon, 28 Oct 2024 19:13:22 +0000 Subject: [PATCH] UIViewComponentPeer: Remove unnecessary method declarations from interface --- .../native/juce_UIViewComponentPeer_ios.mm | 26 ------------------- 1 file changed, 26 deletions(-) diff --git a/modules/juce_gui_basics/native/juce_UIViewComponentPeer_ios.mm b/modules/juce_gui_basics/native/juce_UIViewComponentPeer_ios.mm index 0be97b77ce..7ceaba7be8 100644 --- a/modules/juce_gui_basics/native/juce_UIViewComponentPeer_ios.mm +++ b/modules/juce_gui_basics/native/juce_UIViewComponentPeer_ios.mm @@ -307,32 +307,6 @@ struct CADisplayLinkDeleter std::unique_ptr displayLink; } -- (JuceUIView*) initWithOwner: (UIViewComponentPeer*) owner withFrame: (CGRect) frame; -- (void) dealloc; - -+ (Class) layerClass; - -- (void) displayLinkCallback: (CADisplayLink*) dl; - -- (void) drawRect: (CGRect) r; - -- (void) touchesBegan: (NSSet*) touches withEvent: (UIEvent*) event; -- (void) touchesMoved: (NSSet*) touches withEvent: (UIEvent*) event; -- (void) touchesEnded: (NSSet*) touches withEvent: (UIEvent*) event; -- (void) touchesCancelled: (NSSet*) touches withEvent: (UIEvent*) event; - -- (void) onHover: (UIHoverGestureRecognizer*) gesture API_AVAILABLE (ios (13.0)); -- (void) onScroll: (UIPanGestureRecognizer*) gesture; - -- (BOOL) becomeFirstResponder; -- (BOOL) resignFirstResponder; -- (BOOL) canBecomeFirstResponder; - -- (void) traitCollectionDidChange: (UITraitCollection*) previousTraitCollection; - -- (BOOL) isAccessibilityElement; -- (CGRect) accessibilityFrame; -- (NSArray*) accessibilityElements; @end //==============================================================================