Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 456 Bytes

tips.md

File metadata and controls

35 lines (22 loc) · 456 Bytes

RubyMotion Tips

This page collects the various tips we use.

Feel free to add yours and do a pull request.

Fonts

To list all the installed fonts:

UIFont.familyNames.sort

To add a custom font:

Motion::Project::App.setup do |app|
  app.fonts = ['foo.ttf']
end

Layout

Apple iOS official layout height values:

STATUS_BAR_HEIGHT = 20
NAVIGATION_BAR_HEIGHT = 44
TAB_BAR_HEIGHT = 49
TABLE_VIEW_CELL_HEIGHT = 44