RubyMotion is a commercial system for building native iOS apps using Ruby.

learn more… | top users | synonyms

-2
votes
1answer
36 views

How to send in app sms using rubymotion? [closed]

How do you send an in-app sms (text message) from an iPone app written in Rubymotion?
0
votes
0answers
18 views

uninitialized constant AFMotion::HTTP::AFFormURLParameterEncoding (NameError)

Recently afmotion start to rise error below, even for simple request $ rake Build ./build/iPhoneSimulator-6.1-Development Build vendor/Pods Simulate ...
0
votes
1answer
26 views

Custom styling to ProMotion table cells

I am working on an iOS app using Rubymotion and the Promotion gem. How can I create custom table cells with ProMotion? If I use the built in table screens I can only use default iOS styling which is ...
0
votes
1answer
20 views

How to use custom background image or color using Promotion

I am trying to build an iOS app using Promotion. It works fine as long as I use the build in default design. But I want to be able to style for example the navbar as I want (different colors and ...
0
votes
0answers
48 views

How to create facebook feed style cards in UITableView with Rubymotion?

I've been trying to recreate the facebook style feed using a UITableView without much success. My first idea was to add a new view to the cell that contained the 'card' but I have not been able to ...
2
votes
2answers
53 views

Where to define global constants in RubyMotion?

I'd like to define global constants in RubyMotion. What is the best way to declare global constants? If it's Rails, put global constants in config/initializers/constants.rb is common way, I think. ...
0
votes
1answer
17 views

QuartzCore method of styling UITextField border not working

I cannot for the life of me work out why this code isn't working: @username_textfield = UITextField.alloc.initWithFrame([[50,50],[50,50]]) @username_textfield.layer.cornerRadius=1 ...
0
votes
2answers
32 views

Empty space between navigationbar and view

I'm experiencing this weird behaviour once I initiate an application root controller with a UINavigationController On first launch, there is an empty space between the navigationbar and first ...
0
votes
0answers
23 views

How to integrate commercial edition of SQLCipher into a Rubymotion application

I encrypt a plaintext.db to an encrypted db using sqlite3 binary shipped in the zip package #sqlcipher-export . sqlite> ATTACH DATABASE 'encrypted.db' AS encrypted KEY 'testkey'; sqlite> SELECT ...
0
votes
0answers
90 views

UITableView with Fixed position Search Bar/Custom Filter Bar… dynamic height

I'm developing an app for iOS in Rubymotion (http://www.rubymotion.com) and am wondering the best way to approach a situation. I have included in image with the flow to show the expected results. ...
0
votes
1answer
99 views

Duplicate symbol error when linking AdMob SDK in RubyMotion

My RubyMotion project builds fine, but fails at the linking stage, specifically when linking against GoogleAdMobAds, with a "duplicate symbol" error: Compile ...
0
votes
1answer
55 views

RubyMotion and RestKit Installation

I'm trying to use RestKit inside a RubyMotion project and it's proving to be much more difficult than expected. I've tried the approach listed here https://github.com/rounders/RestKitTest ...
0
votes
1answer
37 views

Rubymotion, ProMotion … How to create a list in a view

Where are methods like numberOfLines:, text:, etc defined? Are they part of RubyMotion? Is there a method for creating a list? How can I create a list in ruby motion...more specifically ProMotion?
0
votes
2answers
53 views

How to add UINavigation controller using ruby motion?

I need some guidance to add UINavigation controller and also add Button in Navigation using ruby Motion.
0
votes
1answer
77 views

Rubymotion x Facebook iOS SDK // Install problems // [!] Unable to find a specification for `Facebook-iOS-SDK`

After having successfully installed and used the SDK on another computer for a project, I'm struggling to make it works on another station, getting the following error : [!] Unable to find a ...
0
votes
1answer
54 views

iOS RubyMotion: UITableView with instance variable

Using RubyMation to write a TableView I've got the following code. The dataSource is another class. The following code runs fine. But first I haven't used an instance variable for @dataSource -- just ...
0
votes
1answer
25 views

Setting up motion-layouts causes path error

I followed the gem setup instructions for motion-layouts ...super easy. However, the path supplied doesn't work...throws an error in the console. The path is as follows: ...
0
votes
1answer
27 views

Best way to display static text in a view RubyMotion

I have a two view app. The root view has items that simply have a details view. In that details view is a simple section label (the item name) followed by a paragraph description. What is the best ...
0
votes
1answer
58 views

How to create a textView in ruby motion?

Im just getting started in RubyMotion with a history in Rails. I have a simple app with two views. The first view is a tableView that lists an array of 'categories'. Each category has a detail ...
0
votes
0answers
34 views

I Installed An Eval Version of RubyMine. Now My Specs Have ##teamcity All Over

I've removed pretty much all traces of RubyMine from my Mac, but when I run a RubyMotion spec, I still get stuff like: ##teamcity[testFinished timestamp = '2013-04-18T10:35:33.630-0700' duration = ...
0
votes
1answer
45 views

RubyMotion undefined method `addTarget' for #<UIRoundedRectButton:0x761fd40>

I am following the motioncasts screencast at: http://motioncasts.tv/start-building-views-in-rubymotion/ And there is some code: button = UIButton.buttonWithType(UIButtonTypeRoundedRect) button.frame ...
0
votes
0answers
40 views

Inconsistent Read Behavior With AsyncSocket

I am writing a RubyMotion app using GCDAsyncSocket, and am experiencing inconsistent results when reading data to a specific term (in my case, CRLF). Rather than always read up until and including the ...
2
votes
0answers
34 views

Using MKStorekit with Rubymotion

Where does the MKStoreKitConfiguration file need to go that it will be recognized by Rubymotion/ the MKStorekit Cocoapod?
0
votes
2answers
75 views

How to put a button in middle of the UIView Horizontally and Vertically for any device?

I have a UIButton of type UIButtonRoundedRectType that I want to put in middle of the screen horizontally and vertically. I've tried doing this by hardcoding numbers but this looks back when run on ...
0
votes
1answer
47 views

What are UIPageViewController#initWithTransitionStyle options keys?

The rubymotion docs say: options (Hash) — A dictionary of options. For keys, see “Options Keys.” But where? See where? There are keys in original ios docs, but what is the rubymotion ...
-5
votes
1answer
85 views

What to use in iOS as a drop down list [closed]

I'm playing around with RubyMotion and trying to add a simple list to an sample app. In the list there will be four items (say, milk, cheese, beer, water) out of which the user should be able to pick ...
0
votes
1answer
65 views

Searching notes using Evernote iOS sdk

I´m building an app on top of evernote-ios-sdk using ruby-motion. I can create tags and notes but when I try to do a search I get the error: domain=com.evernote.sdk, code=3 ...
1
vote
2answers
73 views

How to start NavigationController after button press in rubymotion

I'm trying a simple app in RubyMotion for the first time. I simply want to be able to click a button and then start a UINavigationController Steps: - User presses a button - screen moves to left ...
0
votes
1answer
347 views

Poor UICollectionView Scrolling Performance With UIImage

I have a UICollectionView in my app, and each cell is a UIImageView and some text labels. The problem is that when I have the UIImageViews displaying their images, the scrolling performance is ...
0
votes
2answers
155 views

Better autocomplete in VIM

All, I have been working with vim for some time now, and love everything about it - there is only one thing I really miss from IDEs like RubyMine, and that is advanced autocompletion. For reference, ...
0
votes
1answer
53 views

Listing running processes

Is it possible to get the Objective-C code shown on this question to RubyMotion? How would you go about it? - (NSArray *)runningProcesses { int mib[4] = {CTL_KERN, KERN_PROC, KERN_PROC_ALL, 0}; ...
1
vote
3answers
255 views

What is the iOS (or RubyMotion) idiom for waiting on a block that executes asynchronously?

I have been pulling my hair out for weeks on this niggling problem, and I just can't find any info or tips on how or what to do, so I'm hoping someone here on the RubyMotion forums can help me out. ...
4
votes
4answers
95 views

Is there anything I shouldn't save in NSUserDefaults

I've just got started with RubyMotion and, from what I can tell, it suggests using NSUserDefaults for a datastore. This seems kind of strange to me as the name suggests that it should be only used for ...
0
votes
1answer
94 views

RubyMotion reload sections of UITableView

How can I reload specific section of a table? [self.tableView reloadSections:[NSIndexSet indexSetWithIndex:indexPath.section] withRowAnimation:UITableViewRowAnimationFade] How can I write something ...
1
vote
1answer
117 views

NSJSONSerialization.JSONObjectWithData float conversion/rounding error?

My simple RubyMotion code: data = DataParser.parse(url) error_ptr = Pointer.new(:object) json = NSJSONSerialization.JSONObjectWithData(data, options: 0, error: error_ptr) The url is a weather API ...
0
votes
2answers
92 views

Unrecognized selector sent to UIImage?

hoping you can help me out. Code is Rubymotion but I'm pretty sure it's an iOS issue. Code is simple enough that hopefully it being Rubymotion doesn't get in the way of an answer. And I can read ...
0
votes
2answers
75 views

setting up controller for test

i'm trying to write a functional test for my controller in rubymotion using bacon. in my controller i have some code that populates some data: def viewWillAppear(animated) song_text.text = ...
0
votes
0answers
53 views

Rubymotion vs static library - file was built for archive which is not the architecture being linked

I'm adding 3rd party static library to my rubymotion project using: app.vendor_project('vendor/XXX', :static, :products => [ 'XXX.a' ], :headers_dir => '.') but during the compilation process ...
0
votes
1answer
181 views

Rubymotion: GET Request using JSON

I am new to iOS programming and using Rubymotion to build my first application. In my Rubymotion app I POST to a webserver (an app built using RoR) to authenticate a user wanting to Login and am using ...
0
votes
1answer
64 views

how can I add another textlabel and buttons to a cell in a tableView in rubymotion?

I use the following methods to create a cell and populate data in it(adapted from the tweets app example) Now I want to add a new label displaying the selected event date and a button that will ...
1
vote
1answer
79 views

Using weak frameworks for earlier version support in iOS with Rubymotion

I've built my Rubymotion app to include Facebook and Twitter posting. the SLComposeViewController class required for this is only available from iOS 6.0 onwards. I'd like to make the app available ...
0
votes
1answer
168 views

Loading UIWebView from UITableView works only 1st time

I'm using rubymotion with promotion framework to develop my first iOS application. I have a table view (inside navigation controller), tapping on a table cell opens new screen with web view that loads ...
3
votes
1answer
105 views

Rubymotion: NoMethodError for added method

I added an extra method to the String class. I want to use this method later on, but I get a no Method error. class String def as_file_full_path ...
0
votes
0answers
174 views

Client certificate authentication with rubymotion

What i'm basically trying to do is import a .p12 file to authenicate with an api. However, I'm having trouble translating the following objective c method to rubymotion syntax. ...
0
votes
1answer
70 views

Adding gradient to UIView is causing an error

I'm using RubyMotion. The error message I see in Terminal is: rake aborted! Command failed with status (1): [DYLD_FRAMEWORK_PATH="/Applications/Xcode.a...] ...
1
vote
1answer
104 views

Rubymotion Enterprise Release

How does one release to a staging environment or create a release for Enterprise/Ad Hoc distribution? This is different from an AppStore release and requires a different provisioning profile, and ...
0
votes
1answer
135 views

Correct way of using dequeueReusableCellWithIdentifier and custom cells?

I am building an iOS app using Rubymotion. In this app I got a tableview with many rows. Each row got for labels. The main content labels vary in height. Thus the rows are of different height to (by ...
0
votes
1answer
265 views

How to make a “sidebar menu” with rubymotion? [closed]

What libraries are available to allow for sidebar menu functionality in RubyMotion? Something very similar to this app design, I was wondering if it was possible using RubyMotion.
0
votes
1answer
149 views

What is the best way to configure my RubyMotion App for Development, Testing, and Production Environments

I'm using RubyMotion to build an iOS app. I am using Facebook and Parse. I have set up three different Facebook and Parse applications. How should I set up RubyMotion to use the correct credentials ...
1
vote
0answers
96 views

How do I set Content-type using Bubblewrap HTTP?

I'm trying to post a request with content-type: application/x-www-form-urlencoded. But when I view the request with Charles (or Fiddler) it says application/json. HTTP.post(url, ...

1 2 3 4 5