mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 17:38:07 +01:00
20 lines
392 B
Objective-C
20 lines
392 B
Objective-C
//
|
|
// RMIntroPageView.h
|
|
// IntroOpenGL
|
|
//
|
|
// Created by Ilya Rimchikov on 05.12.13.
|
|
// Copyright (c) 2013 Ilya Rimchikov. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface RMIntroPageView : UIView
|
|
{
|
|
NSString *_headline;
|
|
NSMutableAttributedString *_description;
|
|
}
|
|
|
|
- (id)initWithFrame:(CGRect)frame headline:(NSString*)headline description:(NSString*)description;
|
|
|
|
@end
|