Custom animation during pull to refresh [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 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!

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.

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!

Android analog time picker for iOS? [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 7 years ago.
Improve this question
I want to create an analog time picker similar to one you can find in Android, how to do it in iOS, someone can give me an idea?
Thanks
I created a fully functioning analog clock as a demo of the spring animation feature added to iOS. It's on Github at https://github.com/DuncanMC/ClockAnimation. You could start from that. You'd need to rip out the time-telling part, and add a gesture recognizer for setting the amount of time. There is another project on Github that creates a one-finger rotation gesture recognizer. That would be a good option for setting the timer: https://github.com/kirbyt/KTOneFingerRotationGestureRecognizer

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