
Search In
Here is the code for:
calling a method after a time interval delay.
we use the NSTimer to implement this.
NSTimer *timer= [NSTimer scheduledTimerWithTimeInterval:3.0
target:self
This function gets Executed when a user releases a key on the keyboard.
A function is triggered when user releases the key and it transforms character to upper case.
Example
<p>This is the example of onkeyup event</p>
Use
SQL rename statement is used to change the name of the table in database . Sometime we want to change our table name i.e we want to give some useful name of our table . SO by using this statement we can do the same .
Syntax
Rename oldTableName to N
If you are looking to connect server with your linux terminal. Please follow the below process:
1) You should have .pem file, username and IP address or URL of your server.
2) Open Terminal
3) Get to your folder under .pem file reside. Like I have m
Recently, I faced a problem when the date was saved in different fields month, year and date. I need to club all these fields together and run a between query on it.
Another issue which was there was that Date has '0' contacted if the value is less
Gradient Mesh in Illustrator
Gradient Mesh, is an advance tool that allows us to create gradients in any shapes. The result in artwork as it has come right from the Photoshop. Every designer have his/her own way that how they apply gradient mesh on t
One of the changes in iOS 7 API's is hiding the status bar. Prior to iOS 7 we could hide status bar by using :
[[UIApplication sharedApplication] setStatusBarHidden:YES];
But now there is a slight change. We need to add a row "View controller-bas
Show activity Indicator before image loads using SDWebImage SDK.
UIView *myView;
UIImageView *imgView;
UIActivityIndicatorView *indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
[indic
Array in C# works as it works in any other language except few differences. When we declare an array we must use a square bracket ([ ]) after the data type.
int[ ] number
Unlike c arrays, in c# size of array is not part of its type. This allows u
Call Stored Procedure In Hibernate:
Here is the simple answer of question 'How to call stored procedure in Hibernate?'.A stored procedure is a declarative SQL statements stored inside the database. A stored procedure can be invoked by triggers, using
