Re: Defaults not stored

2013-04-04 Thread Stephane Sudre
On Thu, Apr 4, 2013 at 5:56 AM, Steve Mills sjmi...@mac.com wrote: My screensaver follows examples I've seen as far as creating its defaults in its initWithFrame method: ScreenSaverDefaults*defaults = [ScreenSaverDefaults defaultsForModuleWithName:MyModuleName]; //

Re: Defaults not stored

2013-04-04 Thread Mike Abdullah
On 4 Apr 2013, at 09:18, Stephane Sudre dev.iceb...@gmail.com wrote: On Thu, Apr 4, 2013 at 5:56 AM, Steve Mills sjmi...@mac.com wrote: My screensaver follows examples I've seen as far as creating its defaults in its initWithFrame method: ScreenSaverDefaults*defaults =

Re: Custom insertion point

2013-04-04 Thread Uli Kusterer
If you don't get an answer here, don't keep posting, it just annoys the people who've already seen it. We're all just third-party developers helping each other out. A few Apple developers answer questions here in their spare time, but there aren't Apple people from every section of Apple here,

Re: Providing a Service without activating an app

2013-04-04 Thread Uli Kusterer
I wrote CodingService a while ago (http://the-void-software.com/codingservice/), and as far I can see from a quick glance at the sources, all a .service is, is a faceless background application (LSBackgroundOnly == true in Info.plist) where you change the suffix in the build settings from .app

Re: customizing cursor nssearchfield

2013-04-04 Thread Uli Kusterer
NSSearchField is an NSTextField subclass, which uses an NSTextFieldCell subclass (NSSearchFieldCell) to actually do most of the work. As such it uses the current field editor. So you'll have to subclass NSSearchFieldCell, add an instance variable in which you create your NSTextView subclass,

Best approach to release app customized for the specific app-store

2013-04-04 Thread Symadept
Hi, My app shall exhibit its features depending upon the app-store the app is downloaded from but not from the phone's language/region settings. I quickly thought of an approach: *1. Prepackaged Approach:* Maintain a single code base but plugin the features specific to the region thereby

Offline mobile analytics possible

2013-04-04 Thread Symadept
I have a requirement that able to upload the analytics whenever there is a network availability. I am going through Coremetrics or Google Analytics. Do these support offline caching the requests that can be uploaded in the next availability of the network. If not can anyone suggest other

Fwd: Getting notified when visible contents of a UIWebView has changed

2013-04-04 Thread Motti Shneor
Hello everyone, and please forgive a newcomer's question. I need to observe the visible contents of a UIWebView, rendered in my iOS application, and each time the visible contents changes, I need to extract the contents, and transmit it to our server. A bit like screen-sharing on the Mac, but

Re:RE: PROVIDING A SERVICE WITHOUT ACTIVATING AN APP

2013-04-04 Thread altote...@aol.com
From: ag...@mac.com Date: Wednesday, April 3, 2013 To: Kevin Callahan kc...@mac.com Subject: Re: Providing a Service without activating an app On Apr 2, 2013, at 4:43 PM, Kevin Callahan kc...@mac.com wrote: So, basically, my solution was to minimize my app, do the service work, then