I have an application I have developed where I use OmniBase and OmniNetworking. Can I submit my app to the Mac App Store using these frameworks?
|
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
![]() |
| Use Omni Frameworks in Mac App Store | Thread Tools | Search this Thread | Display Modes |
|
|
|
Member
2010-11-02, 02:21 AM
I have an application I have developed where I use OmniBase and OmniNetworking. Can I submit my app to the Mac App Store using these frameworks?
Post 1
|
|
No one knows yet what exactly they'll be restricting, but we'll definitely be submitting apps that use them. There may be rejections and the need for cleanup, or there may not be (just as with any other pile of code).
There are places that use private API in our frameworks, but these are generally heavily commented and associated with Radar numbers (if they aren't, it is a bug that we should fix). I don't recall any in OmniBase or OmniNetworking, but I haven't done a search yet (Ken's working on the Mac App Store bits).
__________________
VP of Software Development
Post 2
|
|
It turns out we have some stale code in our OmniAppKit framework which references the private function _SetWindowCGOrderingEnabled():
Code:
- (void *)carbonWindowRef;
{
WindowRef windowRef;
extern void _SetWindowCGOrderingEnabled(WindowRef, Boolean);
if (![self respondsToSelector:@selector(_windowRef)]) {
NSLog(@"-[NSWindow(OAExtensions) carbonWindowRef]: _windowRef private API no longer exists, returning NULL");
return NULL;
}
windowRef = [self _windowRef];
_SetWindowCGOrderingEnabled(windowRef, false);
return windowRef;
}
None of our code actually calls -carbonWindowRef anymore; if you're using OmniAppKit I'd recommend removing this method.
Post 3
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| OmniFocus for Mac 1.10.1 [Omni store only] | Lizard | OmniFocus 1 for Mac | 0 | 2012-03-16 03:47 PM |
| OmniFocus 1.9.2 now available from Omni and the Mac App Store | Lizard | OmniFocus 1 for Mac | 1 | 2011-07-21 01:46 AM |
| Mac App Store or Omni Store ? (answer not found...) | bzhgeek | OmniFocus 1 for Mac | 5 | 2011-07-02 12:28 AM |
| Method replacements you make in Omni frameworks | atux | Omni Frameworks | 1 | 2010-12-26 07:17 AM |
| Older Frameworks... | sunfire | Omni Frameworks | 2 | 2009-06-04 07:51 AM |