I bought developer account iOS, but i just want to know, how long to active my developer account?
Brighten your iPad with a colorful cover, stream to your TV, download pictures from your digital camera, and more. There’s already so much you can do with iPad and iPad mini
The incredibly thin Apple Wireless Keyboard uses Bluetooth technology, which makes it compatible with iPad
iPad inspires creativity and hands-on learning with features you won’t find in any other educational tool
Apple announces 4th generation iPad packing an A6X CPU
I bought developer account iOS, but i just want to know, how long to active my developer account?
Apple seems to be having issues with activation right now. Best to contact Apple directly if you're not getting thru.
Otherwise, give it a week, unless you're outside the US, and then it could take twica as long. Be patient.
We have received your purchase information and will email you shortly to verify additional details.
what's the problem?
I have already waited for 5 days,just give me this?
OK, I am having a problem setting the Default Email Account as Exchange Active Sync. I am seeing this in iPhone and IPad both running 6.1.2. The Active Sync Mail account is installed on both devices and works fine. The problem is I am unable for some reason to change the Default Email Account from iCloud to the Exchange Active Sync Account installed. When I select the option to change Default Email Account, iCloud is there and checked however the Active Sync Account does not even show up as a selectable option here. Please help! Thanks
OK, I am having a problem setting the Default Email Account as Exchange Active Sync. I am seeing this in iPhone and IPad both running 6.1.2. The Active Sync Mail account is installed on both devices and works fine. The problem is I am unable for some reason to change the Default Email Account from iCloud to the Exchange Active Sync Account installed. When I select the option to change Default Email Account, iCloud is there and checked however the Active Sync Account does not even show up as a selectable option here. Please help! Thanks
I need to show a window (without title bar) above third party applications without my window taking focus.
I have tried using an NSPanel
and setting enabling non-activating, but that didn't help.
I tried orderFront:self
, but that didn't help either.
I always needed to add [NSApp activateIgnoringOtherApps:YES];
because the window wouldn't show otherwise.
I have here a sample project for just this functionality:
http://users.telenet.be/prullen/TopW2.zip
UIElement
is set to true
in the application's plist file, so there is no dock. You can activate the window by pressing ALT + SPACE
at the same time. You will see that the app below it looses focus. Any thoughts on how to fix this? I've seen other apps do it so I know it's possible.
Edit: here's the code so far. Remember the window is a non-activating NSPanel. I still need that last NSApp activateIgnoringOtherApps
line or otherwise it doesn't display. But of course that makes the window the active one.
_windowController = [[MyWindowController alloc] initWithWindowNibName:@"MyWindowController"];
[[_windowController window] setLevel:NSNormalWindowLevel+1];
[[_windowController window] orderFrontRegardless];
[_windowController showWindow:self];
[NSApp activateIgnoringOtherApps:YES];
I've also subclassed NSPanel and added two methods:
- (BOOL)canBecomeKeyWindow { return NO; } - (BOOL)canBecomeMainWindow { return NO; }
(I also tried canBecomeKeyWindow return YES and several other levels (for setLevel).
Any ideas?
I need to show a window (without title bar) above third party applications without my window taking focus.
I have tried using an NSPanel
and setting enabling non-activating, but that didn't help.
I tried orderFront:self
, but that didn't help either.
I always needed to add [NSApp activateIgnoringOtherApps:YES];
because the window wouldn't show otherwise.
I have here a sample project for just this functionality:
http://users.telenet.be/prullen/TopW2.zip
UIElement
is set to true
in the application's plist file, so there is no dock. You can activate the window by pressing ALT + SPACE
at the same time. You will see that the app below it looses focus. Any thoughts on how to fix this? I've seen other apps do it so I know it's possible.
Edit: here's the code so far. Remember the window is a non-activating NSPanel. I still need that last NSApp activateIgnoringOtherApps
line or otherwise it doesn't display. But of course that makes the window the active one.
_windowController = [[MyWindowController alloc] initWithWindowNibName:@"MyWindowController"];
[[_windowController window] setLevel:NSNormalWindowLevel+1];
[[_windowController window] orderFrontRegardless];
[_windowController showWindow:self];
[NSApp activateIgnoringOtherApps:YES];
I've also subclassed NSPanel and added two methods:
- (BOOL)canBecomeKeyWindow { return NO; } - (BOOL)canBecomeMainWindow { return NO; }
(I also tried canBecomeKeyWindow return YES and several other levels (for setLevel).
Any ideas?