Quick look menu like UBER iOS app [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 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!

Related

How to make periodic table in objective-c? [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 an app that show periodic table but I don't know how to do that simply. one way i thought was UICollectionView but it is not good way. I want to know what can I search and look for.
Thank You !
I take it you're talking about the periodic table of elements?
A UICollectionView is indeed a good way. You should watch the keynote of the 2017 WWDC. They demonstrate that very thing using new features of UICollectionView added in iOS 11, but you could do it without those new features as well.

Custom animation during pull to refresh [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
I'm trying to customize an Pull To Refresh view. I'm wondering how to make something similar to below animation?
(source: cloudfront.net)
Like #Subin mentioned, I would take a look at this tutorial (http://www.jackrabbitmobile.com/design/ios-custom-pull-to-refresh-control/) (You may have to update it to Swift2 code). It helped me with making custom 'Pull to Refresh' animations. Afterwards check out this software (http://www.coreanimator.com/) Core Animator allows you to create awesome animations and it generates the corresponding Swift code for you.
I've made a few custom 'Pull to Refresh' animation with this software and if you have a great imagination then the possibilities are limitless. If you're interested they have a few tutorials on Youtube and if you want examples with the code I'll post a few on my github account. I hope this helps!

What's the best way to develop a side swipe menu in an iOS app? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 8 years ago.
Improve this question
Side swipe menus are pretty popular in iOS applications, so I was wondering if there are any options offered in iOS 8 that allow for it to be implemented in a more straight forward way (like how you can load a screen modally with one click).
This was helpful but it's three years old at this point.
I've found tutorials on how to do it (AppCoda and UXMag), but most of them are at least a year old as well.
I'm wondering if iOS 8 offers new functionality that would make the design a little bit easier?
I've read some about the split view controller that was enhanced in iOS 8. Could that be used to the same effect as the example shown below?
Yes there is. Apple introduced UITableViewRowAction in iOS8.
https://developer.apple.com/Library/ios/documentation/UIKit/Reference/UITableViewRowAction_class/index.html

How to create full screen camera interface without toolbar? [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'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/

Really cool iOS rotation animation [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 9 years ago.
Improve this question
Can anyone show me an example of a cool animation when an iOS device is rotated? I have the following method implemented in my UIViewController:
-(void)willRotateToInterfaceOrientation: (UIInterfaceOrientation)orientation duration:(NSTimeInterval)duration
and I want to be able to make things fly around in a cool way, not just the standard rotation. I've never dealt with animations, so if someone could show me an example (or give me a link to a website with examples) of a neat animation, that would be great!
You'll have a hard time getting help implementing large amounts of code when you haven't shown much effort into trying it on your own first. You should start with the animation guides Apple provides, and try building some basic animations of your own. Once you have an idea of what specific animations you need help with, getting help on SO will be easy.

Resources