-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInsideCategoryTableViewCell.h
More file actions
30 lines (24 loc) · 1.06 KB
/
Copy pathInsideCategoryTableViewCell.h
File metadata and controls
30 lines (24 loc) · 1.06 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
//
// InsideCategoryTableViewCell.h
// Rehberim
//
// Created by Most Wanted on 27/04/16.
// Copyright © 2016 YilmazGursoy. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "InsideCategoryObjects.h"
@interface InsideCategoryTableViewCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *categoryNameLabel;
@property (weak, nonatomic) IBOutlet UIImageView *categoryImageView;
@property (weak, nonatomic) IBOutlet UIImageView *star1;
@property (weak, nonatomic) IBOutlet UIImageView *star2;
@property (weak, nonatomic) IBOutlet UIImageView *star3;
@property (weak, nonatomic) IBOutlet UIImageView *star4;
@property (weak, nonatomic) IBOutlet UIImageView *star5;
@property (weak, nonatomic) IBOutlet UIActivityIndicatorView *indicatorView;
@property (nonatomic) int index;
+(InsideCategoryTableViewCell*)cellForTableView:(UITableView*)tableView;
-(void)cellOnTableView:(UITableView*)tableView didScrollOnView:(UIView*)view;
-(void)setupCell:(InsideCategoryObjects*)object withIndex:(NSIndexPath *)indexPath;
-(void)firstInitialize:(BOOL)control;
@end