mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-02 00:17:02 +00:00
19 lines
433 B
Objective-C
19 lines
433 B
Objective-C
//
|
|
// CNSHockeyBaseViewController.h
|
|
// HockeySDK
|
|
//
|
|
// Created by Andreas Linde on 04.06.12.
|
|
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface BITHockeyBaseViewController : UITableViewController
|
|
|
|
@property (nonatomic, readwrite) BOOL modalAnimated;
|
|
|
|
- (instancetype)initWithModalStyle:(BOOL)modal;
|
|
- (instancetype)initWithStyle:(UITableViewStyle)style modal:(BOOL)modal;
|
|
|
|
@end
|