linphone-iphone/Classes/LinphoneUI/UIChatConversationInfoTableViewCell.h
2017-11-09 11:49:29 +01:00

22 lines
726 B
Objective-C

//
// UIChatConversationInfoTableViewCell.h
// linphone
//
// Created by REIS Benjamin on 23/10/2017.
//
#import <UIKit/UIKit.h>
#import "ChatConversationInfoView.h"
@interface UIChatConversationInfoTableViewCell : UITableViewCell <UIGestureRecognizerDelegate>
@property (weak, nonatomic) IBOutlet UIIconButton *removeButton;
@property (weak, nonatomic) IBOutlet UIView *adminButton;
@property (weak, nonatomic) IBOutlet UILabel *adminLabel;
@property (weak, nonatomic) IBOutlet UIImageView *adminImage;
@property (weak, nonatomic) IBOutlet UILabel *nameLabel;
@property (weak, nonatomic) ChatConversationInfoView *controllerView;
@property (strong) NSString *uri;
- (id)initWithIdentifier:(NSString *)identifier;
@end