mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-19 20:18:09 +00:00
19 lines
497 B
Objective-C
19 lines
497 B
Objective-C
//
|
|
// ChatConversationImdnTableViewHeader.h
|
|
// linphone
|
|
//
|
|
// Created by REIS Benjamin on 26/04/2018.
|
|
//
|
|
|
|
#ifndef ChatConversationImdnTableViewHeader_h
|
|
#define ChatConversationImdnTableViewHeader_h
|
|
|
|
@interface ChatConversationImdnTableViewHeader : UITableViewHeaderFooterView
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *label;
|
|
@property (weak, nonatomic) IBOutlet UIIconButton *icon;
|
|
|
|
- (id)initWithIdentifier:(NSString *)identifier;
|
|
|
|
@end
|
|
#endif /* ChatConversationImdnTableViewHeader_h */
|