Rounded button above the UISCROLLVIEW - ios

I have been working in a project which has a uiscroll view where the uiscroll view size is set programatically with height 225 and width is self. I have created two uiimageView where it displays two images and I have animated it by moving using a page view controller. Finally the image moves atomically like a slide show with page view controller. I have removed the navigation controller do I need to keep a back button for navigation when I place a unbutton above uiscrollview it was stating like scrollview ambitious scrolling content. I need to place a rounded back button above scroll view. I have attached the image of my storyboard. When I tried to place a button it is not visible in stimulator header scroll view is the UISCROLLVIEW where the animated image is placed

Related

How to pin image to screen in Swift?

How can I pin an image to the screen like the profile picture in Snapchat on the top left corner? What should I should learn?
I am guessing that they have used ContainerViews. ContainerView is a resizeable View which can itself contain a View Controller. So you can put a ContainerView inside a View Controller and pin the UIImageView to the View Controller (using Constraints) on top of the Container View.
Make sure the UIImageView is in front of the ContainerView in the view hierarchy so it is visible.
Watch this to get some idea about ContainerViews.

Xcode scrollView that changes its y position using Swift 2

Here's my setup: I have a ViewController that contains an image(button). This button takes the user to another viewController using an #IBAction func (tab controller tab). However, I also want a scrollView on the initial ViewController, just under the image button.
What I'm trying to achieve is the ability to scroll content on top of the image button as if it were another page on top of the image button. As the user scroll back down, the image button is revealed underneath the scrollView and is clickable again.
I can't seem to find a solution anywhere online. My scrollView is either fixed below the image button, or covers the image button rendering it unclickable.
Here's a screenshot
take a look at the demo project i set up:
https://github.com/slotti85/ButtonAndScrollView
i...
put the scrollview all over the screen (also over the button),
set up a contentInset to make the button visible initially,
subclassed UIScrollView and
overrode the pointInside function to make the scrollview forward a touch if the "transparent area" is tapped.
hope it helps!

Custom View for scroll in UITableView

I need to create a custom view for scroll the UITableView/ ScrollView.
Here I attached the picture,
While scroll the color I need to scroll the tableView and up/down arrow button press also the same function.
How can I implement the scroll.
Create a UIView subclass that has controls for moving the page and the scroll bar.
Then you can update the scroll bar from the scrollViewDidScroll method.
Similarly, when the buttons are pressed you can tell the scroll view to setContentOffset.

Hide Bottom Bar When Pushed through Autolayout

I have a UITabBarController with one UINavigationController holding a UIViewController as root view controller.
when tapping one of the button in the UIViewController, I push a regular chat window UIViewController (with TableView + Input View) end hiding the bottom tab bar. (using the "Hide bottom bar when pushed" flag)
In storyboard I added a regular UIView subclass to VC that look like a bottom bar, and I use Auto Layout to pin it to the bottom of the VC view.
The problem
when I push VC it takes a second for this view to pin to the bottom, it looks like auto layout pin it to the bottom as if the tab bar is not hidden and after a sec it recognise that the tab bar is hidden and moves it to the real bottom of the view.
For clear info check this screen shot
Now I will let you the know the constraints of the table view..
Now I am showing the constraints of the InputView
I am also adding my View hierarchy...
I had a similar issue in my project. I solved it by selecting the view I wanted anchored to the bottom (in your case, the input view), held Command, and selected its superview (both views should be highlighted now).
Then I selected the align button at the bottom of IB:
And added a Bottom Edges constraint.
What I had done initially is used the pin menu to pin the view to its superview, but it appears that will pin it to the bottom layout by default, which causes that weird movement during the transition.
EDIT:
After seeing the latest screenshot, the problem could lie in one of the superviews. I'm assuming that chatWindow is a UIView, and your Scroll View is horizontal only. Here's what your should check:
chatWindow is pinned to the scrollView's bottom similar to what I've outlined above.
scrollView is pinned to its superview as I've outlined above.
Moving the inputView outside of the scrollView to the root superview. Then one by one move it down the hierarchy towards its current location.

How do I bring the subview over the scroll view on iOS?

In iOS development, I want to add a subview in a viewbased application. I am having scrollview above that am having views containing labels and I used Interface Builder to design these views.
How do I bring the subview over the scroll view?
The way I do do this in IB is set the View Mode in the document window to Outline View (2nd button). Then I drag the view from the library on top of the scroll view and it will be inserted as a subview of the scrollview.
If you get a disclosure triangle next to your scrollview it will have had the new view inserted as a subview.
If you mean in the xib, drag the scroll view in first then drag your other subviews onto the scroll view.
If you mean programmatically, this should work:
[scrollView addSubview: mySubview];

Resources