Capturing the screen and saving it as an image file
Capturing the screen and saving it as an image file Procedure of capturing image of a UIView Create a Bitmap Context Get the CALayer object (calayer, for example) through UIView’s layer property Call CALayer’s renderInContext: with passing the Bitmap…
Tips to consume .net webservice in IOS applications
Tips to consume .net webservice in IOS applications Creating an iOS Client: Our iOS client will consist of a button which when clicked will make a request to the HelloWorld web method of the NotificationService. The button click event is shown below:…
Consuming WCF Web Services in an iOS Application
Consuming WCF Web Services in an iOS Application -(void)viewDidLoad { [super viewDidLoad]; //Web Service Call NSString *soapMessage = [NSString stringWithFormat: @"\n" "; \n" "\n" "" " \n" " \n" ""]; //[[NSURLCache sharedURLCache]…
Simple Sliding Menu Example in Android
Simple Sliding Menu Example in Android As of now we know that sliding menu is a simple dragging menu from any one side. Complete code: MainActivity.java package com.android.slidingmenuexample; import android.os.Bundle; import…
Android Apps For Meetings & Presentations
Android Apps For Meetings & Presentations:We have for you today 5 great Android apps that can help with collaboration, keeping everyone on the same page, sharing files and important documents as well as web conferencing. Best of all, these apps are…
How To Host Your Personal Website On Google’s Servers For Free
How To Host Your Personal Website On Google’s Servers For Free Make A Personal Website Building a website from scratch can be hard and tricky, especially if you are not a hardcore web designer or an expert with writing tagged elements in html. However…
Top 10 Apps To Record Your Babies Voice
Top 10 Apps To Record Your Babies Voice Moment Garden Moment Garden is a simple-to-use baby journal with a nice minimal interface and a beatuiful timeline view. One interesting feature Moment Garden has is its suggestion engine for milestones and…
Keyboard Shortcuts for Photoshop Toolbox
Keyboard Shortcuts for Photoshop Toolbox + – Add Shape – – Subtract Shape / – Preserve Transparency (toggle) [ – Decrease Brush Size ] – Increase Brush Size Shift+ [ – Decrease Brush Softness by 25% Shift+ ] – Increase Brush Hardness by…
Debug memory leaks with XCode Instruments
Debug memory leaks with XCode Instruments Using Appcelerator doesn’t mean you don’t have to take care of memory leaks. Odds are there is at least one leak in your app right now. Relatively unknown is that this can be easily detected with some XCode…
Tips for Lazy Loading of Images in IOS
Tips for Lazy Loading of Images in IOS 1. Create a new Xcode Project, Single View Application template and add a tableview. 2. Create a custom table view cell. 3. Download SDWebImage latest framework here.…