You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert
Thomas Fuchs began his programming career with a 4MHz behemoth, and is now the proud owner of Slash7, a bootstrapped company that he started with his wife Amy Hoy. They built Freckle, a friendly online time tracking system, and decided to go with RubyMotion to build an OS X app for it. Can you tell us a little about your company, Slash7? We’re a proudly bootstrapped mom & pop company (my wife Amy
あなたにとって重要なトピックや同僚の最新情報を入手しましょう最新の洞察とトレンドに関する最新情報を即座に受け取りましょう。 継続的な学習のために、無料のリソースに手軽にアクセスしましょうミニブック、トランスクリプト付き動画、およびトレーニング教材。 記事を保存して、いつでも読むことができます記事をブックマークして、準備ができたらいつでも読めます。
こんにちは。すっかりRubyMotionでのiOSアプリ開発にどっぷりのkyohです。 最近の趣味はダイエットですが、なかなか成果が出ません。:( 急に 64bit が来たので 世の中、だいぶ64bit環境が普及してきたこともあり、 Appleは2015年2月から、新しいアプリの申請(更新含む)において64bit対応したアプリのみを受け付けるようになります。 64-bit and iOS 8 Requirements for New Apps これに合わせ、弊社サービスの「Clulu」も64bit対応を行いました。 およその32bit – 64bit間の差異はRubyMotionが吸収してくれる(便利!)のですが、 どうしたって一部はソース上での対応が必要です。 その最中、思わぬところで躓き、親切にもRubyMotionのContributorの方に丁寧に教えていただけたので、 簡単な解説
After a year and a half, 21 releases, 554 commits by 23 contributors, 1708 requirements in specs, RMQ is finally at 1.0.0. Deprecations will be removed in 1.0.1. I’m giving you one last chance. bundle update ruby_motion_query People who worked on this version: @squidpunch, @GantMan, @twerth, @vaughankg, and @markrickert New New cool color system, look at docs for basics: http://rubymotionquery.com
Announcing RubyMotion 3.0: Android Platform, WatchKit Apps, and More We recently just turned 3 years old, and today we are excited to announce the immediate availability of RubyMotion 3! We worked a lot on this release and we hope you will enjoy it. Let's dive in! The RubyMotion Android support that we released in public beta a few weeks ago has been integrated into the stable release. If you have
Much and more has been written about Apple’s new programming language, Swift. I even did a talk about it at Yow: Connected 2014. If you saw me there, you’d know that I’m not the biggest fan of Swift. I think the rollout of it has been an absolute disaster: the compiler is a shambles, the language design is inconsistent in places1 and it’s stupidly difficult to get working in libraries, particularl
第 1 回から第 15 回に参加していて 前回の 16 回は中止になっていた RubyMotion もくもく会 in Osaka の 第 17 回 RubyMotion もくもく会 in Osaka - connpass に参加してきました。 今回も基本的にみんなもくもくしていました。 次回の 第 18 回 RubyMotion もくもく会 in Osaka - connpass は 2014/12/17(水) になりました。 今回はメールを書いたり github の issues を見たりコメントしたりしていました。 最後の方は iPod touch の「このコンピュータを信頼しますか」警告が出続けて iTunes が認識してくれない問題を思い出したので、調べていたのですが、結局解決しませんでした。 Dropbox は認識して写真を取り込んでくれるので、ケーブルなどのハードウェアは問題が
Welcome back to our RubyMotion Tutorial for Beginners series! In the first part of the series, you learned the basics of getting started with RubyMotion, and created a view controller with a few styled views. In this second and final part of the series, you will add the rest of the logic to this app, including making the label count down and getting the app fully wrapped up. Let’s get back in moti
Ask any Ruby developer, especially one with a background in Java, C or C++, and they’ll tell you just how much better their life is since discovering Ruby. Ruby’s syntax is concise, simple, and consistent, which makes it very easy to learn and to use. Despite it’s simplicity, Ruby has extensive metaprogramming features; this makes it a very powerful language for developing scalable, developer-frie
Maintaining multiple launch screen images for different devices has always been a pain in iOS. Thankfully since iOS8 you can now use a custom view that can automatically adapt to different screen sizes. In this post I'll show you how to achieve this using RubyMotion. Interface Builder I'm not a fan of using Xcode for all my views but I think there are a couple of scenarios like this where it is a
あなたにとって重要なトピックや同僚の最新情報を入手しましょう最新の洞察とトレンドに関する最新情報を即座に受け取りましょう。 継続的な学習のために、無料のリソースに手軽にアクセスしましょうミニブック、トランスクリプト付き動画、およびトレーニング教材。 記事を保存して、いつでも読むことができます記事をブックマークして、準備ができたらいつでも読めます。
Twitterなど色んなアプリでおなじみ、Pull to Refresh機能の実装。 UITableViewControllerの中で、UIRefreshControlを設定する。また、更新時の処理をaddTarget:action:forControlEvents:を利用してセット。 class ItemsController < UITableViewController def viewDidLoad super # 略 # refreshControlに、UIRefreshControlのインスタンスを設定 self.refreshControl = UIRefreshControl.new.tap do |refresh| # 更新用のアクションを指定 refresh.addTarget(self, action: 'refresh_items', forControlEvent
class ItemsController < UITableViewController READ_COUNT = 20 ITEM_CELL_ID = 'Item' def viewDidLoad super self.title = 'hoge' @items = [] @page = 0 @last_items_size = 0 @indicator = UIActivityIndicatorView.alloc.initWithActivityIndicatorStyle(UIActivityIndicatorViewStyleGray) @indicator.stopAnimating load_items end def load_items Item.fetch(READ_COUNT, @page * READ_COUNT) do |items, error_message|
RubyMotion のバージョンが 3.1 になり、Android 版でカスタム Application クラスが利用できるようになった。 実を言うとこれまでは独自定義の Application クラスを利用することが出来なかったのだが、その旨 RubyMotion のサポートで質問したところ、作者の Laurent さんが一瞬で対応してくれたのだ。 なんてCOOLなんだ!みんなも RubyMotion を買おう! では早速、独自 Application クラスの使い方を簡単に紹介しておく。RubyMotion for Android の入門に関しては前回書いた拙エントリを参考にして欲しい。 1) RubyMotion を更新 以下のコマンドで更新。--pre を忘れないようにしよう 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く