Posted by Matt Takhar on October 2nd, 2012
Categories: iOS
Tags: iOS 6, UIRefreshControl
A quick post on how to implement Apples new “Pull to Refresh” feature in iOS 6. The Pull to Refresh features uses the UIRefreshControl Class the official documentation can be found here: https://developer.apple.com/library/ios/#documentation/UIKit/Reference/UIRefreshControl_class/Reference/Reference.html#//apple_ref/occ/cl/UIRefreshControl To implement simply go to your viewDidLoad method of your UITableViewController and add the following code: UIRefreshControl *refreshControl = [[UIRefreshControl alloc] init];…
Read more…
Posted by Matt Takhar on February 22nd, 2012
Categories: CRM, Development
When doing CRM development its sometimes important to take a copy of the LIVE CRM database and deploy it on your CRM Development server. The steps below cover this scenario, presuming you already have CRM on your Development server: Use SQL Management Studio to restore the database to your development server; make usre you restore…
Read more…
Posted by Matt Takhar on December 7th, 2011
Categories: iOS
Tags: cocos2D, Game Development
Over the last few weeks I’ve been reading a lot about iOS Game Development and must admit I have found hundreds of posts and useful tutorials on getting started; however I thought I would write my own set of tutorials to echo back what I have read with my own twist on things. This first…
Read more…
Posted by Matt Takhar on September 2nd, 2011
Categories: iOS
Tags: APNS, mobileprovision, push notifications
I’ve just spent sometime debugging an interesting issue with push notifications in our TMCS iPhone App.
Read more…
Posted by Matt Takhar on August 17th, 2011
Categories: CRM, Development
Tags: CRM, Plugin, tools, workflow
To help with CRM Plugin and Workflow development Micorosft have created a handy tool as part of the CRm 4.0 SDK which helps you deploy your custom workflow or plugin. This article will walk you through using it! Prerequisites CRM Server and access CRM 4.0 SDK (download it here) Visual Studio 2008 or Visual C#…
Read more…