зеркало из https://github.com/nextcloud/talk-ios.git
20 строки
448 B
Objective-C
20 строки
448 B
Objective-C
//
|
|
// ContactsTableViewCell.h
|
|
// VideoCalls
|
|
//
|
|
// Created by Ivan Sein on 18.07.17.
|
|
// Copyright © 2017 struktur AG. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
extern NSString *const kContactCellIdentifier;
|
|
extern NSString *const kContactsTableCellNibName;
|
|
|
|
@interface ContactsTableViewCell : UITableViewCell
|
|
|
|
@property(nonatomic, weak) IBOutlet UIImageView *contactImage;
|
|
@property(nonatomic, weak) IBOutlet UILabel *labelTitle;
|
|
|
|
@end
|