
Search In
To know On which hardware iOS is ruining like iPhone4 , iPhone5 etc below is the code for that
#import <sys/utsname.h>
-(NSString*) deviceName
{
struct utsname systemInfo;
uname(&systemInfo);
return [NSStr
High Level Language
It is a programming language which makes it possible for programmer to write programs. It is close to human languages and is easy to maintain,read and write. Programs written in a high-level language should be translated into mac
Hello reader's If are using the Windows environment and developing the SSL based websites then you might have to enable the SSL for PHP for the first time. So to enable that you just need to perform the following tasks steps:-
Step1: Rename php.in
Hello Reader's!, If you are looking for a code that can give the directory size from a given path, Then you can use below library code for both Windows and Linux hosting:-
If on a Windows Host:
<?
$filePath = 'c:/www/myfolder';
$obj = ne
if you want to capture the screen shot of the screen in swift use the code below. this function will return an image that can be used as background image of a view
The size of the captured image is same as the size of device.
func caputreScreenShot
To provide some action on touch of any view ,UITapGestureRecognizer is used.
Write this code in viewDidLoad
- (void)viewDidLoad {
[super viewDidLoad];
myView.userInteractionEnabled = YES;
UITapGestureRecognizer *singleFingerTap =
[[UITapGest
C has an interesting and powerful feature of pointers. It differs it from other languages. As the name suggests it points to something. Whenever we declare some data type it holds some memory. If we define a variable ptr then, &ptr is the address
This blog is the continuation series of my last blog posted on Facebook Marketing Tips for Your Business. In earlier blog I have explained in detail various tips and techniques required for prom
Hello Readers
Below is the Sorting functions in PHP:
sort(): It is an array function which is used to sorts the array and it will be arranged the elements in ascending order (lowest to highest).
Example of sort():
<?php
$subject = array("
HTML stands for HyperText Markup Language. It’s a type of text document, where text is ‘marked up’ by using special tags that inform a program that reads the text in how to render the text. Typically that program is a Web Browser such as Internet Exp
