How to create UIView like Notification Center as iOS 7 - objective-c

Hello Follks,I'm developing one Restaurant App.I want to create a view which float from top to bottom on touch and pan gesture with bouncing,push behaviour,gravity,collision(UIKit Dynamics).Any help will be really appreciated thanks..
I'd like to create a View Like Notification Center in iOS 7
Sorry for my english

It appears to be a segmented controlled table. This or this may be of some use to you.
There is a PullableView example on GitHub. For iOS7 like animations, check out UIDynamicAnimator.
You may be able to create a custom transition to a ViewController using this. Or check out this document from Apple about pulling scroll views.

have a look on this tutorial, hope it may help :)

Related

Display UITababrController on leftside in tvOS

I am working on tvOS app and the requirement is to display tab bar controls on left side like in Disney+ tvos app. So can display tabbar controls on the left side or do I have to create a custom view to achieve this?
Attached is the Disney+ tvos tabbar images
As far as I know, there is no way to rotate a UITabBarController on its side. However, you could take a UITabView (https://developer.apple.com/documentation/uikit/uitabbar) and rotate it on its side using Core Animation. To add functionality, set something as the UITabBar's delegate to learn about changes.
As far as an actual code snippet, I typically write in Swift, but I found another Stack Overflow answer with what you're looking for.
How to programmatically rotate image by 90 Degrees in iPhone?
Hope that helps, have a nice day!

Make multiple NSScrollViews scroll at the same time

I am developing a Cocoa Application for Mac OSX. I intend to have multiple NSScrollViews and I'd like all of them to scroll at the same time if one of them is selected and scrolled.
I saw for UIScrollView there is a method "scrollViewDidScroll" that I could do this with an iPhone application.
Is there anything similar for NSScrollView or a way to go about doing this? Any help would be greatly appreciated.
Your solution is going to require that one of the scroll views will need to receive notifications that the other scroll view is being scrolled.
Apple actually provides some very nice documentation on Synchronizing Scroll Views, which also has some sample code snippets as part of it.

Custom size iPad Split view

Im fairly new to objective C. I am currently trying to implement a split view on the iPad. I would like to have a left side view that can be resized so that it looks more like the side view on the spotify app for the ipad.
I understand UI Split controllers won't work because their width's are fixed.
I understand the other option is to use a View controller with sub views that can resized as required. However, I am not too sure how I should implement each subview with its own navigation controller. Any suggestions how else I can implement the said feature.
The image of the side panel implementation can be found in this link.
You can use Matt Gemmell's MGSplitViewController to accomplish this. It provides a custom split view controller implementation that might let you do what you want.
I would like to recommend, PSStackedView which i have used to create a similar layout as the Spotify iPad app. Took some time to understand it

iOS - Flipping animation like iOS 5 banner notifications

I would like create an animation like the iOS 5 banner notifications, but i don't know how!
Any help? I need code and a little explanation!
A flip can also be accomplished via view transforms. This answer gives a good example.
To be able to incorporate elements of the current screen like the notification does will require more manipulation and grabbing the current display bits.

How to create SplitView Controller similar to setting in ipad?

I want to create spiltview controller similar to setting on the ipad.That means even in portrait mode the lefthand side panel should be visible as it appears in landscape mode.Hope I am able to explain what I want.Please can anyone know how I can achieve this?
Thanks in advance!
Ray Wenderlich has a nice tutorial on this subject that walks you through the steps:
iPad for iPhone developers 101: UISplitView Tutorial