How Swift Programming language is similar and different from Objective-C
Similarities to Objective-C Basic numeric types (Int, UInt, Float, Double) Most C operators are carried over to Swift, but there are some new operators Curly braces are used to group statements. Variables are assigned using an equals sign, but compared…
What is Swift (programming language)
Swift is a multi-paradigm, compiled programming language developed by Apple for iOS and OS X development. Introduced at Apple’s developer conference WWDC 2014,Swift is designed to replace Objective-C, Apple’s object-oriented language,[4]…
List of Shortcut Keys in Microsoft Excel
Tab Moves one cell to the right in Microsoft excel worksheet. SHIFT+TAB Moves to the previous cell in a worksheet. CTRL+TAB Switches to the next tab in dialog box. CTRL+SHIFT+TAB Switches to the previous tab in a dialog box. CTRL+1 Displays Format Cells…
How to Display Listview using CursorAdapter and Sqlite Database in Android
How to Display Listview using CursorAdapter and Sqlite Database in Android The objective of this article is to get data from SQLite database and then attach that to the Listview. Source for Activity – AndroidListViewCursorAdaptorActivity.java…
How to Create UITextField programmatically in IOS
UITextField is a type of view which can display a value just like the UILabel and also lets the user change it on the screen using the keyboard. Programmatically create UITextField and add them to the current view Set the border style Overlay custom…
Remote Image List Operator in IOS
RemoteImgListOperator Author jimple Category iPhone,iOS Source GitHub Source Code
How to Create iCal event in IOS
Basically calendar control needs to keep informations in a managed way with dates. for that we need to integrate calendar controls in IOS programatically. There are lots of custom controls available in wan please take a look at this link Custom Calendar…
How to Update WordPress Sites
There are two methods for updating – the easiest is the one-click update, which will work for most people. If it doesn’t work, or you just prefer to be more hands-on, you can follow the manual update process. Back up WordPress Before you get…
How to exclude category from loop in wordpress
0, 'parent' => '', 'orderby' => 'name', 'order' => 'ASC', 'hide_empty' => 0, 'hierarchical' => 1, 'include' => '9,10,224,11,28,474,31,227,32,475', 'exclude' => '9,10,224,11,28,474,31,227,32,475', 'number' => '', 'taxonomy' =>…
What is Unit Testing in .Net
Unit testing is a kind of testing done at the developer side. It is used to test methods, properties, classes, and assemblies. Unit testing is not testing done by the quality assurance department. To know where unit testing fits into development, look at…