| bio | website | caliae.com/hackon |
|---|---|---|
| location | France | |
| age | ||
| visits | member for | 7 months |
| seen | yesterday | |
| stats | profile views | 23 |
|
May 16 |
comment |
Ziparchive not working for unzip in iphone Before opening a file, you should check if the file really exists at the location you think. (use [[NSFileManager defaultManager] fileExistsAtPath:fileContent];) |
|
May 16 |
answered | ios-How to split & from decoded string? |
|
May 3 |
revised |
ios - How to declare the javascript in ios? Indentiation code fixes |
|
May 3 |
suggested | suggested edit on ios - How to declare the javascript in ios? |
|
Apr 30 |
comment |
Our app got rejected because of background location update Apple wants you to use the significant-location change, did you do that ? (take a look at : developer.apple.com/library/ios/#documentation/CoreLocation/…) |
|
Apr 30 |
comment |
iOS app store - app available with gift code only As Wain said, "early access" means "beta test". In iOS review guidelines, it is written that "apps that are beta, demo, trial, or test versions will be rejected". Check point 2.9 in guideline review : developer.apple.com/appstore/resources/approval/… |
|
Apr 30 |
answered | Our app got rejected because of background location update |
|
Apr 18 |
comment |
Identify jailbroken device from iOS application Good answer but incomplete. This code will check if Cydia application is installed on the device, so yes, if Cydia is installed it's mean the device is jailbroken but the opposite is not true : It's not because Cydia is not installed that the device is not jailbroken. A device can be jailbroken without Cydia being installed. |
|
Apr 16 |
answered | How to test IAP (in-app purchase) in iOS Simulator OR on the Device? |
|
Apr 10 |
comment |
CGAffineTransformInvert: singular matrix This error also happen when you set a font size lower than 0. |
|
Feb 13 |
comment |
Incorporating GDAL/OGR into an iOS project - A quick guide Ok, thanks for your anwser MiKL. |
|
Feb 13 |
comment |
Incorporating GDAL/OGR into an iOS project - A quick guide Hey MiKL, once I compiled the gdal for iOS it makes a .a file with a size of 60M, that is really big for a library. Is there a tip to make the library smaller (under 10M) ? Thanks in advance |
|
Feb 4 |
comment |
UILongPressGestureRecognizer not working Nenad is right, if you don't set an action to the longPressGesture object, the action will NEVER happen. You should read the complete Apple documentation here (about gesture) : developer.apple.com/library/ios/#documentation/uikit/reference/… |
|
Feb 4 |
comment |
How to make a Uilabel blink in iPhone Good answer (+1). And just in addition you can replace the if statement by this line : [self.label setHidden:!self.label.hidden]; it saves you 5 lines of code ;-) |
|
Jan 29 |
comment |
incompatible pointer to integer conversion sending 'NSString*' to parameter of type 'BOOL' (aka 'signed char') Just after this line : UIAlertView *alertsuccess = [[UIAlertView alloc] initWithTitle:@"Error" message:@"Benutzername oder Passwort falsch" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil]; |
|
Jan 29 |
comment |
incompatible pointer to integer conversion sending 'NSString*' to parameter of type 'BOOL' (aka 'signed char') You declare an UIAlertView that you call alertsuccess but you don't use it, that's why. You should show the alert view using : [alertsuccess show]; |
|
Jan 29 |
comment |
incompatible pointer to integer conversion sending 'NSString*' to parameter of type 'BOOL' (aka 'signed char') Your answer is better than mine ;) +1 |
|
Jan 29 |
answered | incompatible pointer to integer conversion sending 'NSString*' to parameter of type 'BOOL' (aka 'signed char') |
|
Jan 29 |
answered | Display UITabBar on middle of the screen and fixe the first part of the screen |
|
Jan 24 |
comment |
iPhone : pushing on UIViewController from where it pushed See my second edit. Hope it will be clearer ;) |