-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPAPdiscoverFollowerCell.h
38 lines (28 loc) · 1.21 KB
/
PAPdiscoverFollowerCell.h
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
//
// PAPdiscoverFollowerCell.h
// Teamstory
//
// Created by Tobok Lee on 2/12/15.
//
//
#import <UIKit/UIKit.h>
#import "PAPPhotoHeaderView.h"
@protocol PAPdiscoverFollowerCellDelegate;
@interface PAPdiscoverFollowerCell : UITableViewCell <PAPPhotoHeaderViewDelegate>
@property (nonatomic,weak) id <PAPdiscoverFollowerCellDelegate> delegate;
@property (nonatomic, strong) UIButton *photoButtion1;
@property (nonatomic, strong) UIButton *photoButtion2;
@property (nonatomic, strong) UIButton *photoButtion3;
@property (nonatomic, strong) PAPPhotoHeaderView *photoHeaderView;
@property (nonatomic, strong) PFImageView *PFimageViewForButton1;
@property (nonatomic, strong) PFImageView *PFimageViewForButton2;
@property (nonatomic, strong) PFImageView *PFimageViewForButton3;
@property (nonatomic, strong) NSArray *photoArray;
- (void)setUser:(PFUser *)user;
@end
@protocol PAPdiscoverFollowerCellDelegate <NSObject>
@optional
-(void)setPhotoInDiscover:(PFObject *)photo;
- (void)photoHeaderView:(PAPPhotoHeaderView *)photoHeaderView didTapUserButton:(UIButton *)button user:(PFUser *)user;
- (void)photoHeaderView:(PAPPhotoHeaderView *)photoHeaderView didTapFollowButtonForDiscover:(UIButton *)button user:(PFUser *)user;
@end