Sha256: f85b2e3c037665fbab1cac4828c5fb58a54501ad10aaf82e0ce5f6f1a0b4af5e
Contents?: true
Size: 911 Bytes
Versions: 3
Compression:
Stored size: 911 Bytes
Contents
// // UIBubbleTableView.h // // Created by Alex Barinov // Project home page: http://alexbarinov.github.com/UIBubbleTableView/ // // This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License. // To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/ // #import <UIKit/UIKit.h> #import "UIBubbleTableViewDataSource.h" #import "UIBubbleTableViewCell.h" typedef enum _NSBubbleTypingType { NSBubbleTypingTypeNobody = 0, NSBubbleTypingTypeMe = 1, NSBubbleTypingTypeSomebody = 2 } NSBubbleTypingType; @interface UIBubbleTableView : UITableView <UITableViewDelegate, UITableViewDataSource> @property (nonatomic, assign) IBOutlet id<UIBubbleTableViewDataSource> bubbleDataSource; @property (nonatomic) NSTimeInterval snapInterval; @property (nonatomic) NSBubbleTypingType typingBubble; @property (nonatomic) BOOL showAvatars; @end
Version data entries
3 entries across 3 versions & 1 rubygems