I begin today to use RMQ for my RubyMotion project. I read the documentation of the frame / grid system but I cannot find a way to position a view related to another view.
I have 4 UIbuttons with an image inside. I want to place a UILabel under every button centered aligned.
I'm not using grid, i place my button with frame:
def quiz_button(st)
st.background_color = color.white
st.frame = {l: 40, t: 160, w: 120, h: 120}
st.image_normal = image.resource('sailboat')
st.image_selected = image.resource('sailboat_selected')
end
In MotionKit I have "frame below(:username_input, down: 8)"
so I can place a view under a specific view, in RMQ I cannot find something that help me to do the same.