This repository has been archived by the owner on Oct 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds initial support for custom typing indicator views. Based on @sve…
- Loading branch information
ignacio
committed
Jun 28, 2015
1 parent
db3eba7
commit ae86318
Showing
21 changed files
with
1,216 additions
and
1,931 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// | ||
// 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 |
Oops, something went wrong.