Uiimageview on storyboard other segue - objective-c

I have a segue with a uiimageview and 2 buttons to take a picture and choose one from the library. Then I want to go to the next segue and see this uiimageview there also.
So I need to send the image from the uiimageview to another segue om the storyboard.
Thanks in advanced,
Tim

Add an image property to the second view controller and set it in prepareForSegue:sender:.
There is a previous question that goes into this in some detail.

Related

Show UIImageView in front of UIView

Is there a way to show a UIImageView in front of a UIView (for Preview live)?
I try to make a camera based application so when clicking on a button the app take a pic and show it into UIImageView.
[myView addSubview: myImageView]
should work fine. if not please post your code.
If you are adding the view programmatically the previous suggestion should do it. If the views are in a storyboard or XIB and you want to move it to the front, try this:
[self.view bringSubViewToFront:myImageView];
You might want to use UIKit Peek and Pop if you are on iOS 9 or above.
Also there is this tutorial: http://useyourloaf.com/blog/3d-touch-peek-and-pop/

Push a UITableView modally as a 'transparent layer above' my current View

I need your help.
I want to push a UITableView modally as a 'transparent layer above' my current View.
The TableView exists already and I want to reuse it in a slightly different context.
So the User creates a new Object inside the View, he gives it a name and a description and a topic, when he does so I want to show all existing topics(the TableView) and pick one, then the TableView should disappear.
All its functionality is exactly like usual and it isn't allowed to cover the NavigationBar.
So my Question: is that possible and how?
I hope I could make myself understood.
If you want to present a tableviewcontroller which will be transparent over your view controller, it is possible .
Create your tableviewcontroller instance and before presenting the viewcontroller add the following code.
tableVC.providesPresentationContextTransitionStyle = YES;
tableVC.definesPresentationContext = YES;
[tableVC setModalPresentationStyle:UIModalPresentationOverCurrentContext];
In your tableVC set backgroundcolor to clearcolor It might work

Creating segue from UIImageView to other viewcontroller programatically

I have created few thumbnails of images dynamically and i want to display detail description about that image in other viewcontroller when the respective image is clicked. I am using Storyboard (universal) in Xcode 4.6.
I am new to Xcode can anyone suggest me how to create segue for transitioning to new View Controller when the image is clicked or tapped
Any suggestions or examples will be appreciated.
Thanks in Advance.
Edit:
I am not able to get the click on the uiimageview which is subview of the uiscrollview and the images are created dynamically.
Also wanted to know that is there a way by which i can come to know which image is being clicked.

view on top of tableview shows up below

I have a on top of my tableview another view with 3 buttons on it. You can see my storyboard over here.
When I build and run. This view shows up at the bottom of my tableview. Someone has an idea how this is possible?
Kind regards.
Your UIView is subview of UITableView, to make it on top of the tableView, just drag it out of UITableView scope.
If you select the UITableView then in the Xcode menu Editor->Embed In->View
This will embed the UITableView in a UIView. You can then drag your UIView out from the UITableView and place it at the same level as your UITableView.

Hide and show UITabbar

I have the problem that I want to show a UITabbar when a specific UITableViewController is shown and the UITabbar should disappear if I go back to the original UITableViewController.
Is this possible?
Regards,
Sascha
UITabBar is a UIView, so you can add it to any view you like.