
Search In
Hi All,
In iOS , We have two type of testing one is UI testing (User interface) and UX testing (User experience). In this tutorial we will learn UX testing of an ios app.
User experience (UX) is the internal experience that a person has as th
Expandable RecyclerView contains two views one is parent view and other is child view. Parent is visible by default but the child view has to be expanded and collapsed. It will expand when we click on parent view.
Let's see the Implementation of

Local notifications are used to inform the user regarding some activity in an app. In the local notification, we don’t need any server. It triggers by the app itself at the scheduled time.
In this tutorial, we will learn how to
If you want to make Split Invoices in OpenERP(Odoo) follow the below mentioned steps:
Step-1Install 10n_ve_split_invoice module.
Step-2 After that we have to customised 10n_ve_split_invoice module.
In below example, I have custmozied .py file. You ca
Test driven development is basically a procedure to achieve actual functionality or goal. This is also called in short TDD. This process contains following steps that are :
Write test cases
Run test case
Here I have create a ListView app in android. In the Listview numbers of items shown in vertical scrollable list. In Listview items are automatically inserted to the list and In ListView Adapter pulls content and image from a source database class,
Get the complete list of phonebook contacts inside the app.
We need to add two frameworks before proceed. Goo to Build Phase and Add these two:-
#import < AddressBook/AddressBook.h>
#import < AddressBookUI/AddressBookUI.h>
First step
The URLs of the substance you distribute on your WordPress site are known as permalinks. Permalinks are what individuals go into their program address bar to view one of your pages. They are additionally what internet searchers and different sites us
NSDictionary class represents an unordered collection of objects associate each value with a key.
Create NSDictionary
NSDictionary *cars = @{
@"Mercedes" : @"Benz SLK250"],
@"BMW M3 Coupe" : @"M3 Coupe",
@"Honda" : @"Civic",
};
NSLo
Create a table tbEmployeeMaster by following query :-
CREATE TABLE tbEmployeeMaster
(
EmpId INT NOT NULL IDENTITY(1,1) PRIMARY KEY,
EmpName VARCHAR(100),
EmpCode VARCHAR(15)
)
Create a user
