There are three distinct approaches to iOS development
Approaches to iOS Development Web Application Development The original iPhone OS 1.0 required all non-Apple applications to be web-based and executed within the Mobile Safari web browser. Because Mobile Safari does not support plugins like Adobe Flash or…
How to prevent SQL Injection in iOS apps?
SQL Injection Application Security is a primary concern of every mobile application developer whether it is iPhone app, iPad app, Universal app in iOS, Android app, Blackberry app, Windows Phone app or tablet app. And most of the vulnerability attacks…
How To Manage NSMutableDictionary And NSMutableArray
//create the dictionary NSMutableDictionary *dictionary = [[NSMutableDictionary alloc] init]; //add keyed data [dictionary setObject:@”Object One” forKey:@”1″]; [dictionary setObject:@”Object Two”…
How to catch a Nan?
How to catch a Nan? NaN is not equal to any value, including NaN, use this property instead of the equal-to operator (==) or not-equal-to operator (!=) to test whether a value is or is not NaN. Nan represents Not a number When it happens to get a…
How To Remove and Replace String within a String.
// Here We Deleting Something NSString *content = @”i am a good boy”; NSCharacterSet *deleteString = [NSCharacterSet characterSetWithCharactersInString:@”good”]; content = [[content componentsSeparatedByCharactersInSet:…
How to validate or Allow Only Numeric value TextField in IOS or objective-c
How to validate or Allow Only Numeric value TextField in IOS or objective-c In whatever UITextField you’re getting these values from, you can specify the kind of keyboard you want to appear when somebody touches inside the text field. Check the…
How to use datatype in IOS or Objective-c
%@ Object %d, %i signed int %u unsigned int %f float/double %x, %X hexadecimal int %o octal int %zu size_t %p pointer %e float/double (in scientific notation) %g float/double (as %f or %e, depending on value) %s C string (bytes) %S C string (unichar)…