2017-02-11 17:05:23 +03:00

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