/MessagesTableViewController

A messages UI for iPhone and iPad.

Primary LanguageObjective-COtherNOASSERTION

MessagesTableViewController

A messages UI for iPhone and iPad.

Messages Tableview iPhone screenshot 1      Messages Tableview iPhone screenshot 2

This messages tableview controller is very similar to the iOS Messages app. Note, this is only a messaging UI, not a messaging app. This is intended to be used in an existing app where you have (or are developing) a messaging system and need a user interface for it.

About

This is based on work by @soffes SSMessagingViewController. I took Soffes' code base and developed this to use in Hemoglobe for private messages between users.

Notable changes from SSMessagingViewController:

  • Brought up-to-date for iOS 6.0 and ARC
  • Storyboards Support (if that's how you roll)
  • Allows arbitrary message sizes (and message bubble sizes)
  • Universal for iPhone and iPad
  • Swipe/pull down to hide keyboard
  • Dynamically resizes input text view as you type
  • Improved hiding/showing keyboard with NSNotification
  • Automatically enables/disables send button if text view is empty or not
  • Refactoring, refinements, and fixes

Installation

Using CocoaPods

pod 'MessagesTableViewController'

From source

  • Drag the MessagesTableViewController/ folder to your project.
  • Add the AudioToolbox.framework to your project, if you want to use the sound effects
  • Subclass MessagesViewController
  • Override the following methods:
    • - (BubbleMessageStyle)messageStyleForRowAtIndexPath:(NSIndexPath *)indexPath
      • The style of the bubble for this row
      • Style options are: BubbleMessageStyleOutgoing or BubbleMessageStyleIncoming
    • - (NSString *)textForRowAtIndexPath:(NSIndexPath *)indexPath
      • The text to be displayed for this row
    • - (void)sendPressed:(UIButton *)sender withText:(NSString *)text
      • Hook into your own backend here
      • Call [self finishSend] at the end of this method to animate and reset the text input view
      • Optionally play sound effects with [MessageSoundEffect playMessageSentSound] or [MessageSoundEffect playMessageReceivedSound]
    • - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  • Present view programmatically, or use Storyboards
  • Note: your MessagesViewController subclass must be presented in a UINavigationViewController

Demo projects included

  • MessagesDemo.xcodeproj for example of programmatic presentation
  • MessagesDemoStoryboards/MessagesDemoSB.xcodeproj for example of use with Storyboards

ToDo

  • Landscape mode
  • Timestamps for messages
  • Allow text input view to resize dynamically (i.e., stretch up to top navigation bar like iOS Messages)
  • Display "To:" search field for new messages
  • Option for user avatar to display next to bubbles
  • "Send" images or video

Related Projects

SSMessagingViewController

AcaniChat

License

You are free to use this as you please. No attribution necessary.

If you use this, please tell me about it!

MIT License Copyright © 2013 Jesse Squires

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.