Adding View On Top Of Map View - ios

I am not able to add this view on to the map view to be displayed ... I am working with the map view and I want to add a view on top of it... Here is what I have tried :
Here is my output :
As far as I can see, the map view is covering the icon view!
I tried this too but I got the same output! Please forgive me if this is a silly mistake, I am relatively new to using MapViews. Thanks a lot for your help and I really appreciate it!
I tried your suggestions too :

Thanks a lot for the help. I found out that
view.bringSubviewToFront(iconView)
worked properly and it turns out that the first time it was suggested, I had written it wrongly! I really appreciate your help! Thanks again!

You have to call view.bringSubviewToFront(iconView) in your viewDidLoad function.
Also make sure you have correct layouting / constraints for all your views.
Glad I could help!

You shouldn't need code to place a view on top of a map view. Just drag the icon view under the map view in the document hierarchy.

Related

adding a table view to a alert view in ios 7

i want to do something like this..
i have googled about this but didn't found a good solution or a tutorial.here what i need to do.i want to show a table view inside a alert view.i am not sure how can i do this. some blogs says using delegates we can do this. but i cant understand what are those.can some one clearly tell me step by step what should i do..i am glad if you guide me with code examples or links with great guidance.
thank you
EDIT
can anyone guide me to do this in ios 7... at least the steps i have to follow...
I used a library for adding a custom view to the alert view. In my case was an UIPickerView. Maybe it works with your Table View
Can download on that github link: https://github.com/wimagguc/ios-custom-alertview
Just use this code, after import the custom Alert View:
UIView *customView ..;
[alertView setContainerView:customView];
You following link download sample code and implement into your project may be solve your problem
Source Code Link Here.
Happy Coding
View this example
https://github.com/TomSwift/TSAlertView
it will help you

How to hide or remove the Bottom View/ page indicator view

I tried to google almost everything but could not find the solution.
Please let me know if we can Hide the bottom view of PageViewController.
i want to remove this yellow view.
Even if i use the properties and change the colour to clear colour, still that portion is visible.This view is overriding my contents.
Ive tried using this
[pageController setHidesBottomBarWhenPushed:YES];
but this too did not worked .. :(
Please pLease help me. !!!!
Is This atleast Possible
Thank You.

Sliding drawer equivalent in iOS

After wasting lot of time searching, I am finally posting this question, hoping I get an answer.
I want to have a widget in iOS, which has the similar functionality of Sliding Drawer in Android. (Like the bar at the bottom, and on pulling it, it shows up a new view).
Any help would be greatly appreciated.
Thanks
A few similar questions that might help you out:
Making a pull out tray - (iOS)
iOS: Sliding UIView on/off screen
I recently made a drawer container controller and put it up on Github:
https://github.com/saldavonschwartz/DrawerContainerController
While not exactly the same (you are asking about a vertical single view sliding up/down), you might want to download the code and take a look. My approach might as well work for what you are trying to do: basically, creating a container controller which can host another controller and its view and present its view in a custom way.
Specifically, you might want to look at:
-replaceContainedController:forIdentifier: for how you would go about adding child view controllers the 'Apple' way.
-didPanContent: and -translateContentContainerViewToPosition:animated:completion: for the sliding animation from input of a UIPanGestureRecognizer

iCarousel View in View?

I wanted to integrate "iCarousel" into my project. Here is a screenshot how i would like it:
In the black view I would like the linear carousel.
So I implemented all the things how they did it in the example.
Now I receive the following:
Which means, that the View is now on the complete Detailview.
Maybe you can help me to fix that?
Greetings from Germany :)
Perhaps you need to set clipsToBounds = YES on the carousel view?

Titanium Mobile - Create an iPad Popover in NavBar

I am currently playing around with Titanium Mobile and trying to create and populate a popover when a button in the NavBar (at the top) is clicked. Currently, the popover is created, but it's not populated with any data. (I'm trying to populate it with a view from my file "category_list.js").
Here's what I have tried so far: http://pastie.org/2145045
The problem is: The popover shows up, but it's not being populated with any data.
UPDATE: More specifically, after looking around, I guess what I am trying to do is create a navigation group within a popover. Apparently, this forum post says it's possible.
But I can't seem to figure it out. If anyone can provide a concrete example of how a navigation group works within the context of a popover using Appcelerator, it would help me out tremendously.
Any help would be greatly appreciated! Thanks.
http://blog.clearlyinnovative.com/post/7182213033/titanium-appcelerator-quickie-ipad-popover-with
I wonder if if has anything to do with popover.add(categories_list); being called once at line 18 and once in the click event at line 73. When I've worked with popovers in the past you only need to add to it once. Let me know if this gets you anywhere closer to a solution?
The other problem I see that I'm 99% sure is causing this issue is the popovers don't adjust auto to the child view height and width. Try adding height: 300, width: 250 when creating the popover.

Resources