
Search In
If you want to increase the volume of iphone in a specific app and then reduce it to it's current volume. The following code might get helpful:- (NOTE:Include FrameWork: MediaPlayer.framework )
-(void)exampleFuctionSample{
NSLog(@"");
[self increa
If you want to increase the volume of iphone in a specific app and then reduce it to it's current volume. The following code might get helpful:- (NOTE:Include FrameWork: MediaPlayer.framework )
-(void)exampleFuctionSample{
NSLog(@"");
[self increa
If you want to increase the volume of iphone in a specific app and then reduce it to it's current volume. The following code might get helpful:- (NOTE:Include FrameWork: MediaPlayer.framework )
-(void)exampleFuctionSample{
NSLog(@"");
[self increa
In objective C, UIDatePicker is the best way to display date and time options. We can set date of our choice in a Date picker. Also we can set minimum and maximum date.
Here I am creating UIDatePicker first.
UIDatePicker *pickerDate=[[UIDat
Hello reader's in this blog we are going to discuss about looping, by using array we repeat the names inside a loop. Using loop is easy to access all the elements of an array.
By using a for loop, it is the common access to accessing an
Hello friends,
Many times while doing a calculation in excel we got stuck with errors such as, #N/A, #REF!, #NAME?, #DIV/0!, #NULL!, #VALUE! or #NUM!.
So here in this blog I am picking up #NUM! error and providing you the solution for this, please
Here, I have created a small database for a book store application. In which two tables are required:-
book:- Stores a unique book ID, the title, content, and a deleted flag.
audit_book:- Stores a set of historical changes with a record ID, the book
Drupal 8 has come up with many significant improvement in theming, which makes theming flexible and easier.
The theming in drupal 8 follows the SMACSS categorization. The scripts, stylesheets and the dependencies are defined in the Libraries in .libr
Singleton architecture as the name suggests will create a single instance of a class in the entire project.
We will instantiate the class object only once in the entire project and will reuse it again and again no need to create another obje
In Javascript , getTime() method return the numeric value ( in milliseconds ) corresponding to the time for the specified data according to universal time . Through this method you can assign a date and time to another Date Object. Basically this me
