mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-06-05 20:03:41 +08:00
* Move SwipeCellKit & SlackTextViewController to Local Pods directory * Move playgrounds to own folder * Create podspec for MMMarkdown and move to Local Pods
21 lines
518 B
Objective-C
Executable File
21 lines
518 B
Objective-C
Executable File
//
|
|
// TypingIndicatorView.h
|
|
// Messenger
|
|
//
|
|
// Created by Ignacio Romero Z. on 6/27/15.
|
|
// Copyright (c) 2015 Slack Technologies, Inc. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "SLKTypingIndicatorProtocol.h"
|
|
|
|
static CGFloat kTypingIndicatorViewMinimumHeight = 80.0;
|
|
static CGFloat kTypingIndicatorViewAvatarHeight = 30.0;
|
|
|
|
@interface TypingIndicatorView : UIView <SLKTypingIndicatorProtocol>
|
|
|
|
- (void)presentIndicatorWithName:(NSString *)name image:(UIImage *)image;
|
|
- (void)dismissIndicator;
|
|
|
|
@end
|