Rhomobile : How to remove bottom toolbar in device - rhomobile

Am working on mobile applications using Rhomobile Rhodes. Everything is working fine but I'm having trouble figuring out how to remove the bottom toolbar (with the back, foward, home, refresh) in device.
So How to remove the bootom toolbar in device?

I got the issue solved by
Uncommenting the ##toolbar = nil in application.rb

Related

Master-Detail-Application change the "Back" Button iPad(Objective-C)

To show you my issue I created a new Master-Detail-Application in Xcode 10.1 and with the deployment target iOS 12.1 (I tried other iOS versions too)
I want to change the text of the "Back" Button in the top left corner at the Detail View, which is by default "Master".
I have come up with the following code, which I wrote in the -(void)viewDidLoad method in DetailViewController.m .
self.navigationItem.leftBarButtonItem.title = NSLocalizedString(#"Menu", #"Menu");
[self.navigationItem setLeftBarButtonItem:self.navigationItem.leftBarButton animated:YES];
When I know start the App, the Button is how it should be, but as soon as I press it, it changes back to "Master" and stays that way.
I have tried to put this code anywhere you can imagine, but nothing worked.
I tried several other methods I found online and nothing else worked for me.
EDIT:
I just found out, it only affects iPad, when I test it on iPhone, the button displays correctly.

iOS 11 Semantic UI textbox modal cursor outside of textbox

I am facing a problem very similar to what was reported and resolved in this SO Question: iOS 11 Safari bootstrap modal text area outside of cursor
. However, the difference for me is that I am using Aurelia & Semantic UI.
I have tried using position: fixed in ux-dialog-body as described in several fixes for the problem occuring in bootstrap (in those examples to be added to the body of the modal), however that did not work.
I would appreciate any help on this issue, thanks in advance.
So I got the idea for the fix here : Semantic-Org/Semantic-UI-React
Basically the problem relates to the height of the content behind the modal/what the modal is lying on top of. So, hide all of it when opening the Modal and put it back when done. However, only for iOS, because for some reason on our site doing otherwise breaks Android devices.
iOS: boolean = !!navigator.platform && /iPad|iPhone|iPod/.test(navigator.platform);
In opening the modal
if (this.iOS) {
$('body > :not(ux-dialog)').hide();
$("ux-dialog").show();
}
And closing
if (this.iOS) {
$('body > :not(ux-dialog)').show();
$("ux-dialog").hide();
$("ux-dialog-overlay").hide();
$("ux-dialog-container").hide();
}
I hope this helps someone else.

IQKeyBoaredManager doesn't work properly in IOS 11

I have the IQKeyboardManager version 5.0.6. My view is like below.
If I clicked on a textview for the firsttime, it works fine. See below image
And then if I close the keyboard(by pressing done or return buttons) and click another textview, the textview isn't moving and the keyboarded covers the textview. see below image,
After that if I close the keyboard, my view is look like the below image,
This happens in my all the other similar views as well. But this happens only in IOS 11. I have tested this in a IOS 10 device and IQKeyboardManager worked perfectly.
I have asked about this issue in the IQKeyboardManager GitHub page also.
Here is the link for the issue. But I didn't got any answers.
If anyone knows any solution for this please help me.
The same issue occurred to me.
I updated the pod and it worked fine.
Use pod update IQKeyboardManager or if using swift remove IQKeyboardManager and instead try using IQKeyboardManagerSwift.

UISegmenteControl UI not working properly

what may cause this problem in UISegmentedControl with an Extra line at the tail ? its all fine in preview and Designer but when it comes to running on phone its just not like it was , there isn't any other view near it and is just all it self , tried removing and putting another one without any customizations to its attributes and still the same , also I'm running this on ios 11
after a while I checked and it was gone nothing was changed dont know what caused the problem

Why does my labels, input fields etc greyed out

I was working on this project and it was fine. Today morning when i opened my project i see this. Everything is greyed out. I don't see any of them on my View Controller. Also the view controller is kind of greyed out.
Interestingly if i try to run my app it works fine. Please help me. Let me know if you want to know any specific about anything. Its a almost completed app and am very freaked out right now!
[Using: IOS8,Swift, Xcode 6 Beta 4]
Did you use size classes?
Try to switch to wAny/hAny (bottom of the IB window) and see if your controls reappear.

Resources