Giter Site home page Giter Site logo

messagestableviewcontroller's Introduction

MessagesTableViewController

A messages UI for iPhone and iPad.

Messages Screenshot 1     Messages Screenshot 2

This messages tableview controller is very similar to the one in 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.

See more screenshots in the Screenshots/ directory. (Surprise!)

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. The features section lists the most notable improvements from SSMessagingViewController.

Square message bubbles designed by @michaelschultz.

Features

  • Up-to-date for iOS 6.0 and ARC (iOS 5.0+ required)
  • Storyboards support (if that's how you roll)
  • Universal for iPhone and iPad
  • Allows arbitrary message (and bubble) sizes
  • Timestamp options
  • Swipe/pull down to hide keyboard
  • Dynamically resizes input text view as you type
  • Smooth hiding/showing keyboard animations with NSNotification
  • Automatically enables/disables send button if text view is empty or not
  • Smooth send animations
  • Send/Receive sound effects
  • Various bubble styles

Installation

From CocoaPods

pod 'JSMessagesViewController'

From source

  • Drag the JSMessagesTableViewController/ folder to your project.
  • Add the AudioToolbox.framework to your project, if you want to use the sound effects

How To Use

#####Subclass JSMessagesViewController

  • In - (void)viewDidLoad
    • Set your view controller as the delegate and datasource
    • Set your view controller title

#####Implement the JSMessagesViewDelegate protocol

  • - (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
      • For outgoing messages [JSMessageSoundEffect playMessageSentSound]
      • For incoming messages [JSMessageSoundEffect playMessageReceivedSound]
  • - (JSBubbleMessageStyle)messageStyleForRowAtIndexPath:(NSIndexPath *)indexPath

    • The style of the bubble for this row, options are:
      • JSBubbleMessageStyleIncomingDefault
      • JSBubbleMessageStyleIncomingSquare
      • JSBubbleMessageStyleOutgoingDefault
      • JSBubbleMessageStyleOutgoingDefaultGreen
      • JSBubbleMessageStyleOutgoingSquare
  • - (JSMessagesViewTimestampPolicy)timestampPolicyForMessagesView

    • How/when to display timestamps for messages, options are:
      • JSMessagesViewTimestampPolicyAll
      • JSMessagesViewTimestampPolicyAlternating
      • JSMessagesViewTimestampPolicyEveryThree
      • JSMessagesViewTimestampPolicyEveryFive
      • JSMessagesViewTimestampPolicyCustom
  • - (BOOL)hasTimestampForRowAtIndexPath:(NSIndexPath *)indexPath

    • Returns if this row should display a timestamp or not, based on the value returned from the above method
    • If using a built-in timestamp policy, simply return [self shouldHaveTimestampForRowAtIndexPath:indexPath]
    • If using JSMessagesViewTimestampPolicyCustom, you are on your own!

#####Implement the JSMessagesViewDataSource protocol

  • - (NSString *)textForRowAtIndexPath:(NSIndexPath *)indexPath

    • The text to be displayed for this row
  • - (NSDate *)timestampForRowAtIndexPath:(NSIndexPath *)indexPath

    • The timestamp to be displayed above this row

#####Implement the table view data source method that you should be familiar with

  • - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

#####Customize

  • Custom background color, call - (void)setBackgroundColor:(UIColor *)color
  • Custom send button, override - (UIButton *)sendButton
Notes
  • You may present view programmatically, or use Storyboards
  • Your JSMessagesViewController subclass must be presented in a UINavigationController
Demo projects included
  • MessagesDemo.xcodeproj for example of programmatic presentation
  • MessagesDemoStoryboards/MessagesDemoSB.xcodeproj for example of use with Storyboards

ToDo

  • Landscape mode
  • Allow text input view to resize up to navigation bar (instead of only 5 lines)
  • Display "To: " search field for new messages
  • Option for user avatar to display next to bubbles
  • "Send" images or video

Apps Using This Control

Hemoglobe

Contact me to have your app listed here.

Related Projects

SSMessagingViewController

AcaniChat

MIT License

You are free to use this as you please. No attribution necessary. However, a link back to Hexed Bits or here would be appreciated. If you use this, please tell me about it!

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.

messagestableviewcontroller's People

Contributors

jessesquires avatar nub avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.