
Search In
Slide-Out Navigation is quite popular nowadays. It enhances usability and gives a different look and feel to the app. Apps like Facebook, Path and many others use this feature. Attached with this blog is a nice library called SWRevealViewController t
Using the following code we can calculate the distance between two CLLocationCoordinate2D.
+(double)calculateDistance:(CLLocationCoordinate2D) f to: (CLLocationCoordinate2D) t
{
// CLLocation *locA = [[CLLocation alloc] initWithLatitude:f.la
Following code will help in you to check the network availability for 3G and 4G connection
const char *host_name = "google.com";
BOOL _isDataSourceAvailable = NO;
Boolean success;
//Creates a reachability reference to the specif
With the help of following code you can sort the given dictionary containing key as Date.
@implementation NSMutableDictionary (SortingNSMutableDictionary)
-(NSArray *)getAllSortedKeys{
NSMutableArray *array = [NSMutableArray arrayWithArray:[sel
When we are having multiple tableviews with a common datasource we must make sure that only one table view is being reloaded at a time. We cannot load data on one table while other is scrolling as it would invoke datasource methods for the scrolling
Selenium Webdriver support Google Chrome browser. For this first of all, download ChromeDriver server for webdriver. You can download zip file directly from the link below
http://chromedriver.storage.googleapis.com/index.htm
Then extract zip file
If you want to make Database Association on Selected Pages In Cakephp follow the below steps,
Below code can set association where it require and you can also reduce unnecessary queries firing to database.
Make function in your model and set your
Hello all,
Use the following code to compress the recorded video quality and size.
- (void)compressRecordedVideoWithInputURL:(NSURL*)inputURL
outputURL:(NSURL*)outputURL
hand
Hello Everyone,
I am using the express checkout recurring API for Paypal on my site. When I am using the live credentials on the API of pay-pal account, getting "return to merchant"-error and redirecting me to another window instead of the URL
Underlining title text of UIButton can be done with attributed string using following code (In this case yourTitleLabelText is title text for button and yourButtonObject is button object):
NSMutableAttributedString *titleString = [[NSMutableAttribut
