Git Product home page Git Product logo

promotion's Introduction

ProMotion

Gem Version Build Status Code Climate

iPhone Apps, Ruby-style

ProMotion is a RubyMotion gem that makes iOS development more like Ruby and less like Objective-C. It introduces a clean, Ruby-style syntax for building screens that is easy to learn and remember and abstracts a ton of boilerplate UIViewController, UINavigationController, and other iOS code into a simple, Ruby-like DSL.

# app/app_delegate.rb
class AppDelegate < PM::Delegate
  status_bar true, animation: :fade

  def on_load(app, options)
    open RootScreen
  end
end

# app/screens/root_screen.rb
class RootScreen < PM::Screen
  title "Root Screen"
  nav_bar true

  def on_load
    set_nav_bar_button :right, title: "Help", action: :open_help_screen
  end

  def open_help_screen
    open HelpScreen
  end
end

# app/screens/help_screen.rb
class HelpScreen < PM::TableScreen
  title "Table Screen"

  def table_data
    [{
      title: "Help",
      cells: [
        { title: "About this app", action: :tapped_about },
        { title: "Log out", action: :log_out }
      ]
    }]
  end

  def tapped_about(args={})
    open AboutScreen
  end

  def log_out
    # Log out!
  end
end

Features

Screens Navigation Bars Tab Bars
ProMotion Screen ProMotion Nav Bar ProMotion Tabs
Table Screens Grouped Tables Searchable Refreshable
ProMotion TableScreen Grouped Table Screen Searchable Refreshable
SplitScreens Map Screens Web Screens
ProMotion SplitScreens MapScreen ProMotion WebScreen

NEW [Live reloading!](http://promotion.readthedocs.org/en/master/Guides/Live Screen Reloading/) Use pm_live_screens to enable it, and on_live_reload in your screen to refresh things.

...and much more.

Getting Started

  1. Check out the Getting Started Guide
  2. Watch the excellent MotionInMotion screencast about ProMotion (very reasonably priced subscription required)
  3. Follow a tutorial: Building an ESPN app using RubyMotion, ProMotion, and TDD
  4. Read the Documentation

Changelog

Version 2.4.0

This release includes several new features and is backwards compatible with all 2.x releases.

  • PR #686 Adds :searchable to the whitelisted properties a cell can have so that a warning is not generated.
  • PR #688 Adds support for SDWebImage and takes preference over JMImageCache. JMImageCache will still be supported till ProMotion 3.0 but we highly recommend you switch to SDWebImage.
  • PR #679 Extract methods from tablescreen for reuse in modules for redpotion.
  • PR #677 Added add_child_screen and remove_child_screen methods to PM::Screen.
  • PR #687 Adds persisting tab order when changed by the user for tab bars over 5 screens.

Version 2.3.0

This release includes several new features and is backwards compatible with all 2.x releases.

  • PR #618 Allow search bar to be hidden initially
  • PR #606 Adds capability for table_footer_view
  • PR #602 Add image inset support for tab bar item
  • PR #595 Feature/support module
  • PR #582 Allow setting of multiple nav bar buttons instead of just one left an one right
  • PR #581 Adds on_tab_selected
  • PR #579 implemented nav_bar_button class method RE #272
  • PR #565 Adds header_will_display method to PM::TableScreen
  • PR #663 Adds on_load back to cell dequeue code
  • PR #641 Custom search for PM::TableScreen
  • PR #658 Fix cell height issue

Apps built on ProMotion

Apps built on ProMotion

Your app

Open a pull request! We love adding new ProMotion-built apps.

API Reference

We've created a comprehensive and always updated wiki with code examples, usage examples, and API reference.

Screencasts

Help

ProMotion is not only an easy DSL to get started. The community is very helpful and welcoming to new RubyMotion developers. We don't mind newbie questions.

The quickest way to get help is to join the Motioneers Slack Group. If you still need help, feel free to open an issue on GitHub. If we don't respond within a day, tweet us a link to the issue -- sometimes we get busy.

Contributing

See CONTRIBUTING.md.

Core Team

Other Contributors

promotion's People

Contributors

adam-pl avatar austinseraphin avatar bitgangsta avatar bmichotte avatar carlinisaacson avatar cavalryjim avatar chrise86 avatar dchersey avatar dmarkow avatar gertig avatar hellopatrick avatar jamonholmgren avatar jbender avatar jonmorehouse avatar jsierles avatar kevinvangelder avatar macfanatic avatar markrickert avatar markvillacampa avatar mattgreen avatar ohammersmith avatar orikremer avatar robertjwhitney avatar ryanlntn avatar satoyos avatar sxross avatar thecodeduchess avatar toshiwo avatar waffle-iron avatar wejn 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.