mirror of
https://github.com/wnagrodzki/NGModalPresentation.git
synced 2025-04-04 19:42:15 +02:00
26 lines
507 B
Objective-C
26 lines
507 B
Objective-C
//
|
|
// SampleViewController.h
|
|
// ModalPresentation
|
|
//
|
|
// Created by Wojciech Nagrodzki on 04/10/2014.
|
|
//
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class SampleViewController;
|
|
|
|
|
|
@protocol SampleViewControllerDelegate <NSObject>
|
|
|
|
- (void)sampleViewControllerRequiredDismiss:(SampleViewController *)sampleViewController;
|
|
|
|
@end
|
|
|
|
|
|
@interface SampleViewController : UIViewController
|
|
|
|
@property (strong, nonatomic) UIColor * viewBackgroundColor;
|
|
@property (weak, nonatomic) id <SampleViewControllerDelegate> delegate;
|
|
|
|
@end
|