Languages supported by UITextChecker

The only below languages are supported by UITextChecker for autocorrection words or misspelled words.

“en_GB”,
“es_ES”,
“fr_FR”,
“it_IT”,
“pt_BR”,
“pt_PT”,
“nl_NL”,
“de_DE”,
“en_CA”,
“ru_RU”,
“en_US”,
“en_AU”,
“sv_SE”,
“da_DK”

Iphone Programming Bad_Excess

In Iphone Programming Bad_Excess Does not throw any Exception

In my case :

Problem:-
NSString *str;

if( [ str isEqualToString @"NE" ] )<= this will generate bad excess beacuse
{

}
Sol n:-
NSString *str=@" "; <= sol n NSString Can not be null while we compare it

if( [ str isEqualToString @"NE" ] )
{

}

we can get details of Bad_Excess by using NSZombie Enable

How To Symbolicate Crash Log

For symbolicating crash log, It just require two files and simple steps.

Required :
1. The app file that you submitted for testing or to iTune Store.
2. .dSYM file which is generated at the time of above app file.

Follow steps.

1. Put the app file and .dSYM file in one new folder.
2. Put the attached file (symbolicatecrash) in folder /usr/local/bin/
3. Launch Terminal, execute command
symbolicatecrash myapp.app myapp.dSYM (where myapp is file name of app and .dSYM file)

It will symbolicate all symbols in your crash file.

Happy Coding..
–HS

Invalid Binary issue in IOS release

UIProgressHUD is the private class of Apple API, So don’t extend this class or use it, otherwise after uploading binary on App Store, it will show “Invalid Binary”.

Mail from Apple
—————-

Non-public API usage:
The app contains or inherits from non-public classes in <>: UIProgressHUD

Good Luck iOS develoeprs

Follow

Get every new post delivered to your Inbox.