mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
20 lines
415 B
Objective-C
20 lines
415 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 color:(UIColor *)color;
|
|
|
|
@end
|