Facebook has more then 500 million users and to reach to these users – and make them download your app – Facebook sharing is atmost important. They say an app is invisible if it doesn’t get Facebook users.
In this video, we will see how to integrate Facebook Sharing using their latest Graph API.
Twitter OAuth is one of the major modifications that was made to Twitter API. Now we can use this API using a couple of Class files available and make a twitter friendly app. They say an app is not an app if it doesn’t have Facebook and Twitter Integration, this video below will show you how to integrate twitter in your app and share details on Twitter.
MapKit is one of the important feature introduced in iPhone SDk for developers to use for various mapping purposes. Games and other similar apps may not have much impact by this Kit but its highly used in various other apps where location is of prime importance.
In this 2 part video I have shows you simple basics to a few introduction to advanced features for MapKit. This video shows you how to use MapKit by dragging and dropping simple IB MKMapView element and then how to code it into the app programmatically.
Creating an iPhone App is quite time consuming and takes a good amount of time and is frustrating enough. But thats not where it is over – You have to submit the App to Appstore – This can be a very tedious process and takes for ever and if you mess up one thing – it will for sure frustrate you more.
So instead of writing how to do it I decided to make a video on it. Enjoy and do subscribe to my channel – I will be adding a lot more videos as and when I get time.
Part 1:
Part 2:
Part 3:
Questions – Just leave it here or under the youtube video.
Memory Management is a very important aspect for Mobile Development. iPhone/iPad programming uses terms like alloc, new, retain and copy to allocate new memory for objects and terms like release and autorelease to get rid of the objects and free the memory used by the application.
When you run an application on a Mobile Device, memory restrictions are tend to cause issues for your application. Here I will show you some basics for Memory Management in iPhone and iPad.
iPad has 2 ViewControllers which are not available on iPhone. These are UISplitViewController and UIPopoverViewController. These ViewController are very useful and very helpful to relay data to the user. The skeleton works perfectly and has a lot of advantages over the usual ViewControllers.
In this video I will show you how to crate on using the skeleton available(The Template) and then will show you how to do the same from scratch.
UIImagePicker Controller is used to pick out images either from your Photo Gallery App or take a photo using your Camera and use the selected/taken photo inside your app. It is very useful controller if you are making an app where the user has to provide a photo to the app.
This Controller is widely used for projects which need photo manipulation or need a picture for the app to use. In this video I have explained how to incorporate this into your app.
UIPickerView Controller is a picker Controller which is used to pick out values from a bunch of values or from a array of multiple values. Its equivalent of a drop-down box or you can think of it as a place where you can provide multiple values for a user to select from – Something like Users Date of birth or your users age.
This is also a widely used Controller and can be used for a set of different functions. It also can be customized to a very large extent. In this video I will show you how you can achieve to get a UIPickerView Controller along with its delegate and datasource methods.
In the previous tutorial I mentioned “UITableView Controller’s are the most frequently used Controller”. Now think of a TableView without any rows (so called cells), the table will not make any sense. UitableViewCells are the rows for a UITableView. Now the default version of UITableViewCell is not of any use for most of the applications. Every client you work for or every Project that comes in your way they will ask you to customize the UITableViewCell with so many more features.
In this video I will show you how you can achieve that using UITableViewCell Custom class.
UITableView Controller’s are the most frequently used Controller. There will be hardly an app that might not have UITableView Controller. Apple has created a ViewController specifically for UITableView Controllers so that we dont have to code much of it.
These are subclassed from ScrollViews so they already implement the scrolling feature in it, for multiple rows in a table. It has a couple of delegate methods which also help us to create a table based app within a few minutes. Check out this video for more details.