Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

Finding address from latitude longitude in ios using CLGeocoder

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

How to drag(pan) a view on iPhone screen using UIPanGestureRecognizer

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

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

SMTP Configuration of server

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(); /

Remove .php, .html,.htm extension from website url.

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

Problem with responsive Google AdSense ads

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

Passing block as function argument in Objective C

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 it's usage and Types

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

Self Or Super Keywords in iPhone

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

Basic git commands

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

1 381 720
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: