Posts

iOS

How To Add Default Check Box On TableView Cell in iOS App

Image
Today in this tutorial, I will show you, how to put UITableView in editing mode and bring beautiful default check box on table view cell. This is a very useful feature which you will need to implement in most of the iOS app. Now go to Storyboard in your project and find UITableView object. Drag drop a UITableView object  on your ViewController scene.  Then Drag drop a UIButton object on your ViewController scene. Now create an reference outlet for your UITableView object in your ViewController.h file and name it as mTableView. Create an IBAction for your UIButton object and name it as  didTapBringCheckBoxBtn Now select your ViewController.h file  and  Append “<UITableViewDelegate, UITableViewDataSource>” after “UIViewController”. Declare an NSArray and name it as  dataArray. @interface  ViewController :  UIViewController < UITableViewDelegate , UITableViewDataSource > {      NSMutableArray  *...

Base64 Decoding in iOS 7 Objective-C and iOS8 Swift

Base64 Decoding in iOS 7+ for Objective-C NSString *plainString = @"SteveJobs"; Encoding: NSData *decodedData = [[NSData alloc] initWithBase64EncodedString:base64String options:0]; NSString *decodedString = [[NSString alloc] initWithData:decodedData encoding:NSUTF8StringEncoding]; NSLog(@"%@", decodedString); // SteveJobs Base64 Decoding in iOS 7+ for Swift let plainString = " SteveJobs " Encoding: let plainData = (plainString as NSString).dataUsingEncoding(NSUTF8StringEncoding) let base64String = plainData.base64EncodedStringWithOptions(NSDataBase64EncodingOptions.fromRaw(0)!) println(base64String) // U3RldmVKb2Jz Decoding: let decodedData = NSData(base64EncodedString: base64String, options: NSDataBase64DecodingOptions.fromRaw(0)!) let decodedString = NSString(data: decodedData, encoding: NSUTF8StringEncoding) println(decodedString) //SteveJobs In case you want to write fallback code, decoding from base64 has been presen...

iOS Developer Sample Resume

Image
Savin Reddy savin.av @gmail.com 95*****40 Objective To obtain a creative and challenging position in an organization that gives me an opportunity for self-improvement and leadership, while contributing to the symbolic growth of the organization with my technical, innovative and logical skills, that can ​ ​ be ​ utilized and broadened in the form of a Full time ​ position ​ as iOS application Developer. Professional Experience Post : iPhone Developer Organization: ***********8 Pvt Ltd Duration : August-2015 To Till Date. Education Bachelor’s of Science and Technology-Electronics And Communication May-2015 Completed my Bachelors of Science and Technology from JNTUH with an aggregate of 71.08% Key Skills 1.7 years of experience in the field of application development of iPhone. Great knowledge of programming languages like C, Objective-C, C++. ...

Software Test Engineer Sample Resume

Savin Reddy A                                                                               Mobile: 95****40 Test Engineer                                                                               Mail: savin.av@gmail.com     Professional Summary Over 3 years aggregate IT experience with strong software testing multi-tier client/server and enterprise web applications. Relevant 2 .5 years strong working experience on Selenium Webdriver, Appium, Protractor and Applitools Using JAVA. Strong experience of testing eCommerce mobile web and applications i...

Email and password based authentication with Firebase in Swift

Image
Firebase  Authentication gives us backend services to authenticate users with your app. It provides SDKs and ready-made UI libraries. It supports authentication using passwords, and other providers like Google, Facebook and Twitter, Github, and more. Steps to configure your app with Firebase Open  Firebase Console Create new project over there Create new app into the project You will be getting GoogleService-Info.plist file from settings Add it to the project Add just one line to configure your app  FIRApp.configure() import UIKit import Firebase @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { FIRApp.configure() return true } } Let’s step with Firebase Authentication Step 1. Enable Email an...