├── .gitignore ├── README.md ├── example ├── UIBubbleTableViewExample.xcodeproj │ └── project.pbxproj ├── UIBubbleTableViewExample │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── UIBubbleTableViewExample-Info.plist │ ├── UIBubbleTableViewExample-Prefix.pch │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── ViewController.xib │ └── main.m ├── avatar1.png ├── halloween.jpg ├── icon_114.png └── icon_57.png ├── images ├── bubbleMine.png ├── bubbleMine@2x.png ├── bubbleSomeone.png ├── bubbleSomeone@2x.png ├── missingAvatar.png ├── missingAvatar@2x.png ├── typingMine.png ├── typingMine@2x.png ├── typingSomeone.png └── typingSomeone@2x.png ├── psd ├── myBubble@2x.psd ├── myTyping@2x.psd ├── someoneBubble@2x.psd └── someoneTyping@2x.psd └── src ├── NSBubbleData.h ├── NSBubbleData.m ├── UIBubbleHeaderTableViewCell.h ├── UIBubbleHeaderTableViewCell.m ├── UIBubbleTableView.h ├── UIBubbleTableView.m ├── UIBubbleTableViewCell.h ├── UIBubbleTableViewCell.m ├── UIBubbleTableViewDataSource.h ├── UIBubbleTypingTableViewCell.h └── UIBubbleTypingTableViewCell.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/README.md -------------------------------------------------------------------------------- /example/UIBubbleTableViewExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/example/UIBubbleTableViewExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/UIBubbleTableViewExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/example/UIBubbleTableViewExample/AppDelegate.h -------------------------------------------------------------------------------- /example/UIBubbleTableViewExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/example/UIBubbleTableViewExample/AppDelegate.m -------------------------------------------------------------------------------- /example/UIBubbleTableViewExample/UIBubbleTableViewExample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/example/UIBubbleTableViewExample/UIBubbleTableViewExample-Info.plist -------------------------------------------------------------------------------- /example/UIBubbleTableViewExample/UIBubbleTableViewExample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/example/UIBubbleTableViewExample/UIBubbleTableViewExample-Prefix.pch -------------------------------------------------------------------------------- /example/UIBubbleTableViewExample/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/example/UIBubbleTableViewExample/ViewController.h -------------------------------------------------------------------------------- /example/UIBubbleTableViewExample/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/example/UIBubbleTableViewExample/ViewController.m -------------------------------------------------------------------------------- /example/UIBubbleTableViewExample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /example/UIBubbleTableViewExample/en.lproj/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/example/UIBubbleTableViewExample/en.lproj/ViewController.xib -------------------------------------------------------------------------------- /example/UIBubbleTableViewExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/example/UIBubbleTableViewExample/main.m -------------------------------------------------------------------------------- /example/avatar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/example/avatar1.png -------------------------------------------------------------------------------- /example/halloween.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/example/halloween.jpg -------------------------------------------------------------------------------- /example/icon_114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/example/icon_114.png -------------------------------------------------------------------------------- /example/icon_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/example/icon_57.png -------------------------------------------------------------------------------- /images/bubbleMine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/images/bubbleMine.png -------------------------------------------------------------------------------- /images/bubbleMine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/images/bubbleMine@2x.png -------------------------------------------------------------------------------- /images/bubbleSomeone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/images/bubbleSomeone.png -------------------------------------------------------------------------------- /images/bubbleSomeone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/images/bubbleSomeone@2x.png -------------------------------------------------------------------------------- /images/missingAvatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/images/missingAvatar.png -------------------------------------------------------------------------------- /images/missingAvatar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/images/missingAvatar@2x.png -------------------------------------------------------------------------------- /images/typingMine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/images/typingMine.png -------------------------------------------------------------------------------- /images/typingMine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/images/typingMine@2x.png -------------------------------------------------------------------------------- /images/typingSomeone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/images/typingSomeone.png -------------------------------------------------------------------------------- /images/typingSomeone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/images/typingSomeone@2x.png -------------------------------------------------------------------------------- /psd/myBubble@2x.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/psd/myBubble@2x.psd -------------------------------------------------------------------------------- /psd/myTyping@2x.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/psd/myTyping@2x.psd -------------------------------------------------------------------------------- /psd/someoneBubble@2x.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/psd/someoneBubble@2x.psd -------------------------------------------------------------------------------- /psd/someoneTyping@2x.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/psd/someoneTyping@2x.psd -------------------------------------------------------------------------------- /src/NSBubbleData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/src/NSBubbleData.h -------------------------------------------------------------------------------- /src/NSBubbleData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/src/NSBubbleData.m -------------------------------------------------------------------------------- /src/UIBubbleHeaderTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/src/UIBubbleHeaderTableViewCell.h -------------------------------------------------------------------------------- /src/UIBubbleHeaderTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/src/UIBubbleHeaderTableViewCell.m -------------------------------------------------------------------------------- /src/UIBubbleTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/src/UIBubbleTableView.h -------------------------------------------------------------------------------- /src/UIBubbleTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/src/UIBubbleTableView.m -------------------------------------------------------------------------------- /src/UIBubbleTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/src/UIBubbleTableViewCell.h -------------------------------------------------------------------------------- /src/UIBubbleTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/src/UIBubbleTableViewCell.m -------------------------------------------------------------------------------- /src/UIBubbleTableViewDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/src/UIBubbleTableViewDataSource.h -------------------------------------------------------------------------------- /src/UIBubbleTypingTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/src/UIBubbleTypingTableViewCell.h -------------------------------------------------------------------------------- /src/UIBubbleTypingTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexBarinov/UIBubbleTableView/HEAD/src/UIBubbleTypingTableViewCell.m --------------------------------------------------------------------------------