mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
26 lines
764 B
Objective-C
26 lines
764 B
Objective-C
//
|
|
// ContactDetailCell.h
|
|
// Signal
|
|
//
|
|
// Created by Dylan Bourgeois on 30/10/14.
|
|
// Copyright (c) 2014 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "Contact.h"
|
|
#import "UIUtil.h"
|
|
|
|
@interface ContactDetailCell : UITableViewCell
|
|
|
|
@property (strong, nonatomic) IBOutlet UILabel *contactName;
|
|
@property (strong, nonatomic) IBOutlet UIImageView *contactImageView;
|
|
@property (strong, nonatomic) IBOutlet UIImageView *contactFavoriteImageView;
|
|
@property (strong, nonatomic) IBOutlet UILabel *contactPhoneNumber;
|
|
@property (strong, nonatomic) IBOutlet UITextView *contactNotesTextView;
|
|
|
|
@property(nonatomic, strong) IBOutlet UILabel* contactAnnexNumberLabel;
|
|
@property(nonatomic, strong) IBOutlet UILabel* contactEmailLabel;
|
|
|
|
|
|
@end
|