How to create full screen camera interface without toolbar? [closed] - ios

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I've been looking around the internet for ages now and I can't seem to find my answer anywhere! Basically, I want to create a full screen camera interface similar to SnapChat. I don't want the bottom toolbar as I want to be creating my own "Snap" buttons.
I found a few things but the references are like five years old now.

I found the answer to my question - most answers of the internet pointed me to using UIImagePickerController - instead I used AVFoundation. Found a great little tutorial here:
https://www.invasivecode.com/weblog/a-very-cool-custom-video-camera-with/

Related

how to create rotating compass view similar to the iPhone crop/rotate image control [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I want to create a rotating compass wheel view similar to the iPhone crop/rotate image control like in the demo image below, all I want is the graduated ruler that can be controlled by swiping , if anyone knows a library or a component that could help doing this in iOS using objective-c.
thank you in advance
the demo image

Quick look menu like UBER iOS app [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I am looking to build an app with a menu like Uber.
I am pretty new to developing in XCODE, I have built some simple apps already but nothing with something like that, I think I have to do some kind of ViewController that I can swipe up, all I have left is how I can Make it swipe up.
How can I achieve that?
Thanks in advance
I do recommend you investigate this source for similar tool.
But if I were you I better use UIViewControllerTransitionCoordinator instead UIViewControllerAnimatedTransitioning.
But be aware UIViewControllerTransitionCoordinator available from iOS 8.
Good luck!

Xcode: Storyboard change presentations [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
Evening, I'm playing with Xcode storyboard and stack views inside a cell.
I have several stack nested.
When I load the app the presentation looks fine, but when I press into a row of the TableView, something happens and and Image view change the size :)
I'm sure that there is some kind of problem with constraints and stacks, but I can't find it, could you help me?
here's the git: https://github.com/AndreaMiotto/TwentyFour
Here some pictures:
Add fixes, not all, but it's working and you can fix rest by yourself.
https://github.com/OMGHaveFun/TwentyFour

Custom video player in iOS with next video suggestions [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
Is it possible to create a custom video player in iOS? Like having custom bars and buttons?
And if yes, is it possible to add such a functionality like the YouTube suggestions for next video, right after the current one has stopped?
Thank you in advance!
Short answer is that yes it is possible.
Use AVPlayer and build a custom view controller that handles showing the suggestion.

Trying to find the name of this "slidable UIView"? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Anyone know what the control is called to achieve the functionality shown here in the iOS Stocks app?
I've been searching Google for things like 'Slidable UIView' but can't find anything!
If you mean the graph, there's no native component for that, but you can use an external library, for example CorePlot:
https://code.google.com/p/core-plot/
If you mean the scroll view with pages, it's just a UIScrollView with a content size of several pages and a UIPageController attached.
Sliding View -> Have a look at this:https://github.com/dickverbunt/DVSlideViewController.
Besides that you need to have pageControl:https://www.cocoacontrols.com/controls/smpagecontrol
This is how the dots appear in the image.
Plotting Graph -> Have a look at this: https://code.google.com/p/core-plot/
Tutorial for PageControl with ScrollView: http://iosmadesimple.blogspot.sg/2013/01/page-control-for-switching-between-views.html

Resources