mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-06-05 15:09:12 +08:00
* Move SwipeCellKit & SlackTextViewController to Local Pods directory * Move playgrounds to own folder * Create podspec for MMMarkdown and move to Local Pods
30 lines
789 B
Objective-C
Executable File
30 lines
789 B
Objective-C
Executable File
//
|
|
// MessageTableViewCell.h
|
|
// Messenger
|
|
//
|
|
// Created by Ignacio Romero Zurbuchen on 9/1/14.
|
|
// Copyright (c) 2014 Slack Technologies, Inc. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
static CGFloat kMessageTableViewCellMinimumHeight = 50.0;
|
|
static CGFloat kMessageTableViewCellAvatarHeight = 30.0;
|
|
|
|
static NSString *MessengerCellIdentifier = @"MessengerCell";
|
|
static NSString *AutoCompletionCellIdentifier = @"AutoCompletionCell";
|
|
|
|
@interface MessageTableViewCell : UITableViewCell
|
|
|
|
@property (nonatomic, strong) UILabel *titleLabel;
|
|
@property (nonatomic, strong) UILabel *bodyLabel;
|
|
@property (nonatomic, strong) UIImageView *thumbnailView;
|
|
|
|
@property (nonatomic, strong) NSIndexPath *indexPath;
|
|
|
|
@property (nonatomic) BOOL usedForMessage;
|
|
|
|
+ (CGFloat)defaultFontSize;
|
|
|
|
@end
|