
Search In
if you are using the UIWebview and want to autoplay the video from url then just add the "autoplay=1" at the end of the url.
Here is the code:
NSString *url=@"https://www.youtube.com/watch?v=vs3sVrm_W4o&autoplay=1";
[self.webview l
HTML5 allows you to validate an HTML form field using a regular expression. The below HTML code validate an email address against a regex.
<input type="email" name="email" required pattern="[^@]+@[^@]+.[a-zA-Z]{2,6}" />
Test case:
s
Given an array of numbers I, write a program to find the sum of remaining in the array and display the new array. the first line specifies the no of elements in the array followed by the elements in the array in the second line.
Sample input: 4 1 2
I have created single select button group using radio button with label tag using css display: table and table-cell for text content exceed or overflow in each button. It's working fine all browsers (Chrome, Firefox & IE) expect Safari browse
I have a question about these hidden files.
I had came across using astro file browser and didn't know how to translate the code
00'³ N@**|£**3*f81³*ZÐú€±--*@ú‡&rdquo
Hi,
I am explaining the difference between HashSet and TreeSet in Java.
First of all they both come from the same family. They implement the Set Interface.
In HashSet, values store in random order. That means it is not sure that the element ente
How To Load a Image Form a url
You can use this class in your application to load image . It can be use by calling its
DisplayImage(String url, int loader, ImageView imageView) function.This function there are three parameters
first is String para
Generally we think Eyedropper tool is used for picking colors or gradients in Illustrator. But you know that the **eyedropper can be used for picking character styles and appearances**.
To do this,
Type a text & add some style on it.
Then, selec
Sometimes we need to get current date but we need to get time with date that starts from 12 O'clock morning and sometimes ends with 12 O'clock night.
To achieve this use the below code:
1- Write the below code to set time fields to start
/**
* S
Binary Search:- The Binary Search is one of the most important searching technique in Searching Algorithm. The one of property of this searching algorithm is, all the elements are in sorted order in array. The worst case and average case complexity o
