I'm new to iOS. And I'm trying to get popup menu as I did on Android:
This menu should disappear when the user clicks on another area of the screen.
I found the same menu in the YouTube app for iOS, but I didn't find a simple solution for that. I tried using popup window with "Present Modally" segue, but it behaves differently.
You can use cocoapods to quickly add a dropdown menu. Can read more: https://github.com/AssistoLab/DropDown
Related
Every now and then, I see tutorials allowing to add components to a storyboard by clicking a plus sign on the right up corner of the editor:
Bu I do not have this button. And it seems that there is no menu available.
I have to say that I'm trying to modify the storyboard outside of any project by opening the file alone.
Any help appreciated.
The plus button should be available on the right side of Project Header Section[Tool Bar] as Shown in the image
Based on the selected file different screens will be opened when we click on the + button.
We can also use the keyboard shortcut cmd+shift+L
Verified on Xcode Version 14.1 (14B47b)
Update:
As this option is available on the Toolbar, it may not be available if the toolbar itself is hidden. To toggle the visibility of toolbar we can use the shortcut cmd+option+T
I have a view (A) with some Text, Image and Google Maps inside. In this view has a Button "Go direction" to open Google Maps app by url_launcher (I'm using this one url_launcher
The problem is when the user goes back from the Google Maps app, view A does not work properly anymore, Click on Back button from Top navigation bar the Maps and Images in A's view are disappear, just text content is still there.
User cannot go back to the previous view
This happens in iOS only, Android works well.
And it happens only if view A has the Maps inside
I am new to the xamarin platform and I am needing to achieve this screen in Xamarin Android.
you need this popup when any button clicked or automatic when you go to login screen.
If you want this popup when button clicked then :
1- First Design this layout in your axml file.
2- On Button click create a Dialog.
3- Inflate that dialog with your created layout.
If You want this popup without any button click then in OnCreate Method follow above approach.
Sorry for the confusing title but I can't get my head around to find the right words for this scenario:
We have an iOS app that has a top-left menu button. If you tap it, a side menu opens and most of the screen (incl. the menu button) are slid to the right.
for Calabash I need to track the ID of the view that is slid to the right. Any tap on the whole slid-to-right view area will close the menu. The menu icon itself seems to have no other function than being a visual help and its accessibility ID cannot be found by Calabash while the menu is open.
Does anyone know how iOS handles this kind of navigation? To sum it up:
We have an initial view open with a menu button.
If button is tapped, menu slides in from left and current view is moved to right (mostly out of the screen).
You can now tap any of the remaining visible area of the initial view and the menu will close again (the menu button seems to receive no touch during this).
I need to figure out to what assign an accessibility ID to so that Calabash can 'imitate' a tap on the slid-out, initial view to close the menu.
Have you tried using the Accessibility Inspector in the Developer Tools of Xcode? This might help you in seeing whether or not you can interact with the slid-out menu.
Also if you haven't tried using the calabash command tree - I'd give that a go as well. For that open the menu you're trying to interact with use the command calabash-ios console > console_attach > tree.
You will be able to see the whole view hierarchy here, you can even run tree before and after the menu pops out to see if it makes a difference.
I am an iOS noob and I've gotten stuck while trying to do a tutorial from O'Reilly's headfirst iphone development 2e. The tutorial wants me to drag the picker to the placeholder menu as shown in the picture below--but I can't seem to make this menu visible in xcode.
What do I do to show the placeholder menu?
If I need to click the "Disclosure button" as suggested in an answer to this question, where do I find it in the interface? In the navigators? The utilities?
Here is my screen in xcode:
This guy seems to be having a similar problem How to add the Placeholder Window in Xcode (unanswered)
Your problem is that you have created your project with a storyboard. Storyboards do not have a File's Owner placeholder. Since you're a self-described noob, you should just start a new project and make sure you turn off the “Use Storyboard” checkbox when you are going through the new project wizard.
Right click or control click over the picker and that window should pop up. Then drag (not control drag) from the open circle up to file's owner.