Tips to improve iphone battery life !!!
1. Turn on Auto-Brightness 2. Reduce Screen Brightness 3. Stop Motion & Animations 4. Disable Dynamic Backgrounds 5. Turn Bluetooth Off 6. Turn Off LTE or Cellular Data 7. Keep Wi-Fi Off 8. Turn Off Location Services 9. Turn Off Other Location…
How to Remove Background of a Image using Photoshop
Remove Background of a Image Open the image in Photoshop Elements. This method works best if the background is a solid color, or close to a solid color. Navigate to the Layers window. This is typically located on the right side of the screen. Most images…
How to Integrate or Install AdMob SDK in IOS Projects
How to Integrate or Install admob SDK in IOS Projects Prerequisites -Xcode 5.1 or higher -Deployment target of 5.0 or higher -Recommended: Install CocoaPods to simplify dependency management A-Creating a new project 1-Open up Xcode, and navigate to File…
How to Create Custom Delegate
// MyViewController.h: #import @protocol MyProtocolName; @interface MyViewController: UIViewController @property (nonatomic, weak) id delegate; @end @protocol MyProtocolName @required -(void)requiredDelegateMethod; @optional…
Facebook and Twitter Sharing in iOS application using Social Framework
Facebook and Twitter Sharing in iOS If you are working on iOS app development, then these days, everyone prefers to implement the social network sharing features like Twitter and Facebook sharing. If implemented, then this will add value to your iOS app…
How to take screenshots in iPhone !
screenshots in iPhone Turn on your iPhone. Just hold down the button on the top right of the phone and wait for the white Apple logo to appear. Find the image you want to capture. You can choose any image from your email, photos, home screen, or from…
Advantages of MongoDB over RDBMS
Advantages of MongoDB over RDBMS Schema less : MongoDB is document database in which one collection holds different different documents. Number of fields, content and size of the document can be differ from one document to another. Structure of a single…
Mongo-DB Introduction
MongoDB is a cross-platform document-oriented database. Classified as a NoSQL database, MongoDB eschews the traditional table-based relational database structure in favor of JSON-like documents with dynamic schemas (MongoDB calls the format BSON), making…
Swift Programming Language Tutorial (The Basic)
Swift is Apple’s brand new programming language, just released this year at WWDC 2014. This Swift tutorial will take around 15 minutes and will give you a quick tour of the Swift language, including variables, control flow, classes, best practices, and…