Re: No sound through speaker

2015-04-17 Thread David Rowland
Check Apple’s documentation for Audio Sessions, https://developer.apple.com/library/ios/documentation/Audio/Conceptual/AudioSessionProgrammingGuide/Introduction/Introduction.html

Re: No sound through speaker

2015-04-17 Thread Uli Kusterer
On 17 Apr 2015, at 22:32, Ron Wagner wrote: > I asked the users if they might have had the mute switch in the muted > position, and they state it was not in the mute position, and cycling the > mute switch on and off had no affect. > > Seeing as how we have not implemented a “cone of silence”

No sound through speaker

2015-04-17 Thread Ron Wagner
I am receiving reports from users that the sound generated from our app isn’t always coming out of the iPhone speaker, but will always come out of the ear buds when they are plugged in. This is an intermittent problem, though when the problem is presenting itself, it can remain for days. We

Re: Images Being Substituted in UIText .attributedText -- It's an iOS bug

2015-04-17 Thread Michal L. Wright
Hi, Well, I used a tech support incident and it was determined that I should submit a bug report, which I have done. (And the tech support incident was credited back to my account.) -- Mike > Message: 1 > Date: Fri, 10 Apr 2015 19:18:22 -0400 > From: "Michal L. Wright" > To: cocoa-dev@lists.a

RE: NSStatusItem, Popover and NSTextField make responder

2015-04-17 Thread Lee Ann Rucker
It's just not possible. When you're in the runloop to track the menu (or presumably popover, though I haven't tried that) [NSApp isActive] is NO, activateIgnoringOtherApps has no effect, so there's no keyWindow and the textfield needs to be in a keyWindow to become firstResponder. I have done e

Re: Thousands of leaked CGContext ?

2015-04-17 Thread David Duncan
> On Apr 17, 2015, at 2:38 AM, Eric Matecki wrote: > > Hi, > > (I know this is not 100% Cocoa, but it isn't 100% CoreGraphics either...) > > I'm drawing to an NSWindow with CoreGraphics, and each time there is a leaked > CGContext, CGContextDelegate, CGColorTransform, NSBitmapGraphicsContext,

Re: Scattered NSProgress use

2015-04-17 Thread Jens Alfke
> On Apr 17, 2015, at 8:07 AM, Daryle Walker wrote: > >> If you’d rather, you can make everything explicit by _never_ making an >> NSProgress current, and instead passing it in as the parent when you create >> new child instances. > > You can’t do that (for now). A progress object’s parent mu

Re: User interface unresponsive in window

2015-04-17 Thread Uli Kusterer
On 15 Apr 2015, at 16:04, Jonathan Taylor wrote: > I've started encountering intermittent problems in one specific window in my > application, where text input boxes become unresponsive, steppers remain > highlighted after clicking, etc. I'm rather short of ideas on how to debug > this, particu

NSStatusItem, Popover and NSTextField make responder

2015-04-17 Thread Alex Kac
I have a popover that is opened on tapping a menu status item. In the popover I have a text field that I’d like to have become active when the popover is open. When the app is in the foreground and you tap on the status item it does become active. When its in the background, it does not. In beta,

Re: User interface unresponsive in window

2015-04-17 Thread Kyle Sluder
On Fri, Apr 17, 2015, at 04:16 AM, Jonathan Taylor wrote: > That's a fair suggestion, but taken in its most general sense that is a > near-impossible task. There are 100-odd source files in the project, etc, > and just "code-read the project and look for some bug" is a non-starter. Before you emb

Re: layout method not getting called on Content View

2015-04-17 Thread Dave
> On 16 Apr 2015, at 22:37, Quincey Morris > wrote: > > On Apr 16, 2015, at 13:54 , Dave > wrote: >> >> I’m wondering if the call to super should happen before I mess with the >> Content View? > > From the NSWindowController documentation: > >> "The default

Re: Scattered NSProgress use

2015-04-17 Thread Daryle Walker
On Apr 13, 2015, at 12:33 PM, Jens Alfke wrote: > >> On Apr 11, 2015, at 12:49 PM, Daryle Walker > > wrote: >> >> We have to make sure that the automatic parent/nesting aspect doesn’t make >> sibling & cousin progress objects, whose actions will be interlaced, >> interf

Thousands of leaked CGContext ?

2015-04-17 Thread Eric Matecki
Hi, (I know this is not 100% Cocoa, but it isn't 100% CoreGraphics either...) I'm drawing to an NSWindow with CoreGraphics, and each time there is a leaked CGContext, CGContextDelegate, CGColorTransform, NSBitmapGraphicsContext, and NSFocusStack (one of each). Here is how I do it : CGDa

Re: User interface unresponsive in window

2015-04-17 Thread Jonathan Taylor
>> Am I right in thinking that when running under Xcode any drawing errors will >> be logged to the Xcode console? > > No, not unless they’re actually exceptions. Messages from other processes are > only going to appear in the system log. OK, thanks for your suggestion about checking the system