ios 7

UITapGetureRecognizer in IOS

UITapGesturRecognizer, what is that. You touch screen of your smartphones, in technical terms it is known as gesture. There are different types of gesture API’s available to IOS developers UITapGetureRecognizer In this post, we will cover UITapGestureRecognizer and learn how to use it in our iOS app.Apart from UITapGestureRecognizer we have UIPanGestureRecognizer and UIrotationGestureRecognizer. Let […]

UITapGetureRecognizer in IOS Read More »

Integrate Applovin banner ad in IOS

Applovin SDK for monetization of smartphone is an another better alternative for the app developers. Recently I got a project and my Project manager asks me to integrate different ad networks that are available for smartphone app monetization. So when I started integrating Applovin SDK, I comfortably integrated popover ads, but had some tough ask when adding a banner

Integrate Applovin banner ad in IOS Read More »

Add parallax effect to UIImageView programmatically

Parallax effect comes to IOS with the introduction of IOS 7. You can achieve this parallax effect inside  your  app by using the  UIInterpolatingMotionEffect class. Let’s clarify parallax effect, the parallax effect makes your wallpaper to move left and right or up and down when user tilt his device. The parallax effect example is shown in

Add parallax effect to UIImageView programmatically Read More »

Tips and Tricks – Part 3

In this article i am going to explain some of the programming solutions 1. Capture device screenshot programmatically     CGRect rect = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height);     UIGraphicsBeginImageContextWithOptions(rect.size,NO,0.0f);     CGContextRef context = UIGraphicsGetCurrentContext();     [self.view.layer renderInContext:context];     UIImage *capturedImage = UIGraphicsGetImageFromCurrentImageContext();     UIGraphicsEndImageContext(); Here, in above code we first pass the rect which we want

Tips and Tricks – Part 3 Read More »

Tips and Tricks for ios development

In this post, i am going to tell you some of the tips and tricks for different scenarios of IOS development. 1. Scale an UIImageView or view               To scale an UIImageView/UIView in IOS we have CGAffineTransformScale with which we can scale our UIImageView/UIView.In this method we will pass current

Tips and Tricks for ios development Read More »

iPhone Development: Post to Facebook and Twitter using SLComposeViewController

Post image and text to social network is a common feature used in all iPhone/iPad apps. We can post image and text using different techniques in iPhone. One of them is SLComposeViewController. The SLComposeViewController class presents a view to the user to compose a post for supported social networking services. First we will check for

iPhone Development: Post to Facebook and Twitter using SLComposeViewController Read More »

iPhone Development: Set BackgroundColor of UITableView transparent in IOS7

UITableView is the most common control used in iPhone app development.It basically used for displaying a list in our iPhone application. Though you can customize it  in many different ways as per your app.To set background color of your UITableView as transparent, we can use table.backgroundColor = [UIColor clearColor]; The above line of code works

iPhone Development: Set BackgroundColor of UITableView transparent in IOS7 Read More »