mirror of
https://github.com/wnagrodzki/NGModalPresentation.git
synced 2025-04-05 12:02:21 +02:00
27 lines
507 B
C
27 lines
507 B
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
|