
Search In
CoreLocation framework of iOS provides method for finding address of a location using its latitude and longitude (also known as ReverseGeocoding). Following code snippet explains how to use it :
CLLocation *location = targetlocation;
CLGeoco
To drag a view we can either use the touch methods of UIViewController or we can use UIPanGestureRecognizer. UIPanGestureRecognizer is much easier and simple to implement. This blog explains how to use it.
Add pan gesture to the view (or any contro
Integration testing is performed to know whether system's different modules or third party services with system work together correctly or not. Integration Testing is performed by tester only, it comes under the Black Box testing.
We should consider
If you are using some other server like godaddy or some other server for that you need to put the settings of that particular server in its setting. I am sharing the settings for godaddy server.
$mail = new PHPMailer();
$mail->IsSMTP(); /
Hello ,
I am sharing here how you can remove .php extension from Url of your website. here are the following steps:-
Create a .htaccess file in project directory.
Suppose you have to remove the .php extension from a PHP file for example abc.com/te
If you are planning to add responsive Google ads then we need to take care of the size of the parent container of the Ads. This is compulsory that size should be in percentage(%).
I tried to use this setting and set container's size as 50% in a parti
Yes, we can pass the Block as argument in function. Here it is :
let suppose i create a class Downloader
First declare a Block in Downloader.h:
typedef void (^DownloadComplete)(double,double,double,BOOL,id,id);
then declare method as following i
Protocols are powerful functionality provided by iOS. These are set of behavior that is expected from an object to behave/respond in a given situation.
Protocols are set of methods and properties. One can define protocol as:
@protocol protocolName
The Self and Super Keyword in IOS are important and one should know why and how they are used in objective c.
One should always access the instance variables directly from or within an initialization method. Because at the time when property is set o
Hi All,
Here are some basic and required git commands for starting purpose:
1: Set your name:
git config --global user.name "Your name"
2: Set your emails:
git config --global user.email your_email
3: Clone repository:
git clone git_repository
