-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRCFlipInformationViewController.h
More file actions
42 lines (33 loc) · 1.17 KB
/
RCFlipInformationViewController.h
File metadata and controls
42 lines (33 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//
// FlipInformationViewController.h
// PageControl
//
// Created by rcrebs on 6/17/10.
// Copyright 2010 Apple Inc. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "RCWebViewController.h"
@protocol FlipInformationViewControllerDelegate;
@interface RCFlipInformationViewController : UIViewController <RCWebViewControllerDelegate>{
id <FlipInformationViewControllerDelegate> delegate;
UITextView *description;
int pageNumber;
UINavigationBar *navigationBar;
UITextView *attributeText;
UIButton *buttonLink;
NSURL *urlLinkToPhoto;
}
@property (assign) int pageNumber;
@property (nonatomic, assign) IBOutlet UINavigationBar *navigationBar;
@property (nonatomic, assign) IBOutlet UITextView *description;
@property (nonatomic, assign) IBOutlet UITextView *attributeText;
@property (nonatomic, assign) IBOutlet UIButton *buttonLink;
@property (nonatomic, retain) NSURL *urlLinkToPhoto;
@property (nonatomic, assign) id<FlipInformationViewControllerDelegate> delegate;
// Methonds
-(IBAction)done;
-(IBAction)callLink;
@end
@protocol FlipInformationViewControllerDelegate
-(void)flipInformationViewControllerDidFinish:(RCFlipInformationViewController *)controller;
@end