How create a Slide-out Sidebar in iOS - ios

I want create slide-out sidebar. but I want to do, like in google map or other material design app of google.
If anyone has sample code, please share them with.
Example
http://cdn.pttrns.com/pttrns/3304/original/IMG_0015.PNG

There's a lot of libraries that you can use to implement this. I suggest you to visit Cocoacontrols and find the one that you like the most.
Anyway, try using REFrostedViewController: https://github.com/romaonthego/REFrostedViewController

My solution for this would be using this awesome controller.
https://github.com/pkluz/PKRevealController

Related

Animation and loading like around me application

I would like to implement the same type of loading functionality and animation as this application: https://itunes.apple.com/in/app/aroundme/id290051590?mt=8
I have been trying to find information on how to do this but can't quite seem to find any good resources.
How can I accomplish this? Even just an idea of what to properly google search will be extremely helpful!
It's called ripple effect
There is demo you can find from below link
https://github.com/bharathlalgudinatarajan/LNBRippleEffect
Other option is you can find/implement last colum 3rd effect from below link.
https://github.com/gontovnik/DGActivityIndicatorView

How to add Icons in Commit Editing Style.

I am trying to figure out how to add icons when swipping on a table View Cell the same way the mail app does it using the Commit Editing style. Any thoughts or ideas are greatly appreciated. :)
There are many examples avaialble on Github. Some of them are as below.
YMSwipeTableViewCell
SESlideTableViewCell
AFMSlidingCell
MGSwipeTableCell
JASwipeCell
SWRevealTableViewCell
DNSSwipeableTableCell
You may use any of above as per your need.
As of now there is no way you can achieve this functionality without third party frameworks.
I'm not an insider, but it is very likely that Apple will provide an API for that in the future.
Please see Rahul Patel's answer for Frameworks to use.

YouTube's search function in IOS

http://coolappsman.com/wp-content/uploads/2012/09/YouTube-App-Search.jpg
Hello, I am looking for some implementation tips for YouTube's search-function. I want to implement exactly the same thing but without the function "displaying tips based on the search-term".
With other words, I want a simpler version. How can I make the NavigatorBar disappear when the user clicks on the "search-button" and then make the NavigatorBar appear again after the user searched what they looked for? If you have seen the app its pretty clear what I am trying to explain.
Anyone know a good tutorial to implement something like this? What methods do this require? I am grateful for all tips. Thanx!
Jesper.
Concept you want to implement is quite hard to do, that is highly customized control. Instead of showing results in the same view, a new controller is pushed with results table.
However, you can start with UISearchDisplayController. See Apple's TableSearch example.

iOS discussion board / comments board API or sample?

I'm trying to find examples of code libraries or sample code for adding a commenting functionality in my apps. I've successfully implemented the Disquser iOS wrapper (http://bit.ly/iadisquser) in a couple of my apps but find it difficult to manage. I've seen other apps that incorporate a commenting feature that's cool, including theCHIVE Lite app, that looks like its using Facebook maybe?? Any hints or suggestions?
Look at QuickBlox Custom Objects code sample. I think it's what you need.
It represents user's notes, which he can create & comment. So, you can implement this comments logic into your apps and comment any item you want
There's a good tutorial for building a chat app that may help you get started, you can find it here: http://www.ibm.com/developerworks/library/x-ioschat/index.html

ios5 storyboard version of Facebook integration

Just curious if there is an existing storyboard version of Facebook integration around because I've been googling for about 2 days. So far, I can do authorization for my app and what I have in mind is to try posting a simple status message perhaps from my app to my Facebook newsfeed. Most of the demos / tutorials I've gone through use xib's though such as this. This one is a good tutorial, however I want a storyboard version for this. Tell me if this post is a dupe and kindly post that question so I can study it.
I know there were a lot here that know the idea of sharing :)
So any helpful links were very much appreciated, as it will, in a way, boost my learning experience as well as the others who are starting iOS development :)
Thanks!
If you wish to simply post a status update you should be able to use the same examples that are shown in nib files. However if you want to see a sample app that uses story boards you can take a look at this sample app:
https://github.com/fbsamples/ios-social-cafe
It uses story boards to set up the UI and perform facebook login. You can also check it out to see how to use the new UI pickers (friends, place) and how to do open graph actions.
If you have more specific details around how you want to post a status update, please provide them so I can clarify further.
Yes, there is a simple example of an iOS app using Storyboards (iOS5 and later): https://github.com/fbsamples/ios-social-cafe
Hopefully that's helpful and shows how to do a good authorization flow with Storyboarding.
Good luck.

Resources