// Use of this source code is governed by a BSD-style license that can be// found in the LICENSE file.#import <UIKit/UIKit.h>@protocolNativeViewControllerDelegate/// Triggered when the increment button from the NativeViewController is tapped.-(void)didTapIncrementButton;@end@interfaceNativeViewController:UIViewController-(instancetype)initWithDelegate:(id<NativeViewControllerDelegate>)delegateNS_DESIGNATED_INITIALIZER;@property(nonatomic,weak)id<NativeViewControllerDelegate>delegate;-(void)didReceiveIncrement;@end