anka_

anka_

37p

47 comments posted · 1 followers · following 0

12 years ago @ Seaside - Your first iPad split ... · 0 replies · +1 points

Dear kmc,

do not use [window addSubview:] and [window makeKeyAndVisible]. Instead try this code:

self.window.rootViewController = splitViewController;
IntroView *introViewController=[[[IntroView alloc] initWithNibName:@"IntroView" bundle:nil]autorelease];
[introViewController setModalPresentationStyle:UIModalPresentationFullScreen] ;
[splitViewController presentModalViewController:introViewController animated:NO];

Cheers,
anka

12 years ago @ Seaside - Objective C - HMAC-MD5 · 0 replies · +1 points

Hi, yes it is fully compatible to the corresponding php function. HMAC and MD5 algorithms stay the same all the time :).

Cheers,
anka

12 years ago @ Seaside - Show a custom popover ... · 0 replies · +1 points

Dear Purna,

the view displayed within the popover is like any view fully customizable. To set a background image just add a UIImageView to your view and set the appropriate image.

Cheers,
anka

12 years ago @ Seaside - Show a custom popover ... · 0 replies · +1 points

Hi,
I do not know why you would do something like this? If it is a popup which has nothing to do with some interaction of your user (like touching a button) then maybe you should use a fullscreen popover or you simply add another customizied UIView (i.e. with black transparent background) on top of your current view hierarchy.
Cheers,
anka

12 years ago @ Seaside - Add foursquare to your... · 0 replies · +1 points

Hi,

did you register your application for oAuth access on http://foursquare.com/oauth/ first? You'll need to do this first and enter the key and secret to your property file as well.

Cheers,
anka

13 years ago @ Seaside - Custom video/camera ov... · 0 replies · +2 points

Hi,
you can try to use the global notification center for making your app listening to orientation changes. Try this code:

//put this code somewhere in your view controller for example
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(deviceOrientationDidChange:) name:UIDeviceOrientationDidChangeNotification object:nil];
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];

//your method which gets called whenever a device orientation change was recognized
- (void)deviceOrientationDidChange:(NSNotification *)notification {
UIDeviceOrientation deviceOrienation = [[UIDevice currentDevice] orientation];
//go on here
}

cheers,
anka

13 years ago @ Seaside - Add foursquare to your... · 0 replies · +1 points

Hi,
basically you will need a valid callback url (which should be some kind of website of your application) but it doesn't really matter because you will receive your access token within your iOS application.
cheers,
anka

13 years ago @ Seaside - Game: Stone Flood · 0 replies · +1 points

Hi Suzanne,
on which plattform are you playing Stone Flood? iPhone, iPad, Android or Windows Phone?
Regards,
anka

13 years ago @ Seaside - iAd Integration · 0 replies · +2 points

So if you say "a lot of free and paid user" are you talking of two different applications or do you use InApp-Purchase to offer more functionality to your users?

If you are using two independent applications it shouldn't be a problem to integrate iAd to your free version of your app and then you don't have to touch the paid version.

If you are using InApp-Purchase you hopefully marked the purchase somewhere in the user's settings (with NSUserDefaults) already. You can simply check the purchase then.

cheers,
anka

13 years ago @ Seaside - Add foursquare to your... · 0 replies · +1 points

Hi,
I don't think that OAAttachement.h is the real problem. There must be another conflict with some framework or source files i think.
Cheers,
anka