Fullscreen window problems

2019-10-24 Thread Ray, Jeffrey R. {Jeff} (AFRC-630) via Cocoa-dev
only resulted in memory faults. Thanks in advance! -j -- Jeff Ray M/S 4840A Official Correspondence Only: NASA jeff@nasa.gov Armstrong Flight Research Center

Re: Best way to put a fixed view in a UITableViewController scene?

2013-11-27 Thread Ray Raphaël
I do the following, the property *tableView in UITableViewController is not backed by a _tableView instance variable, so I synthesize that (@synthesize tableView = _tableView;) and then in viewDidLoad: if (!_tableView && [self.view isKindOfClass:[UITableView class]]) self.tableView = (UITableVi

Re: Question about UIImage, scaling, and UIGraphicsBeginImageContextWithOptions

2012-03-29 Thread Ray
case is just what I need ;) Thanks, - Ray. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/

Re: Question about UIImage, scaling, and UIGraphicsBeginImageContextWithOptions

2012-03-28 Thread Ray
I don't think so (not sure what your question was, possibly it was in another thread?) On Mar 27, 2012, at 9:31 PM, b.n...@bluewin.ch wrote: > sorry, is that the answer of my question? > > benedikt > > > > > > Ursprüngliche Nachricht > Von: cocoa-dev@deployedsmarts. > com > Datum:

Re: Question about UIImage, scaling, and UIGraphicsBeginImageContextWithOptions

2012-03-28 Thread Ray
w code base). Thanks for your reply btw! - Ray. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Uns

Re: Question about UIImage, scaling, and UIGraphicsBeginImageContextWithOptions

2012-03-27 Thread Ray
Andreas: On Mar 27, 2012, at 6:41 PM, Andreas Mayer wrote: > So either imageWithData does not restore the scale from PNG data or > UIImagePNGRepresentation() does not store it in the first place. When I set a breakpoint at UIImagePNGRepresentation(newImage) I can see that the scale of newImage

Re: Question about UIImage, scaling, and UIGraphicsBeginImageContextWithOptions

2012-03-27 Thread Ray
Andreas: On Mar 27, 2012, at 6:41 PM, Andreas Mayer wrote: > The scale value is the same as set in > UIGraphicsBeginImageContextWithOptions(), as far as I can tell. Right, that was what I meant actually. > But it will be lost when creating PNG data and reading it again. (Since I > don't see

Re: Question about UIImage, scaling, and UIGraphicsBeginImageContextWithOptions

2012-03-27 Thread Ray
EG format and has an associated DPI value, a corresponding scale > factor is computed and reflected in this property. " > > So I would expect PNG images to retain their scale value when saved and > loaded. > > If this does not work, there seems to be a bug somewhere. >

Re: Question about UIImage, scaling, and UIGraphicsBeginImageContextWithOptions

2012-03-27 Thread Ray
Right, cell.imageView sets its own frame, no matter where you try to set it manually. I could of course add my own image view to the cell's contentView... On Mar 27, 2012, at 4:21 PM, Roland King wrote: > UIImageView's scale automatically so just setting the frame of the > UIImageView containin

Re: Question about UIImage, scaling, and UIGraphicsBeginImageContextWithOptions

2012-03-27 Thread Ray
t might be indeed. Thanks again, food for thought regarding this pesky problem! - Ray. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admi

Re: Question about UIImage, scaling, and UIGraphicsBeginImageContextWithOptions

2012-03-27 Thread Ray
creen... (deployment target is iOS 4). On Mar 27, 2012, at 11:57 AM, Giacomo Tufano wrote: > Il giorno 27/mar/2012, alle ore 09:38, Ray ha scritto: > >> OK, so I have this iOS 3.x code base that I need to update. I have the >> following code, to make a thumbnail image: >>

Question about UIImage, scaling, and UIGraphicsBeginImageContextWithOptions

2012-03-27 Thread Ray
#x27;t find a more elegant solution. What would be a more thorough approach? Maybe it's staring me in the face but I don't see it... Thanks for your answers, - Ray. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not pos

Re: Localized.strings is being ignored

2011-04-15 Thread Ray
Also, to be complete, this post by Chris Hanson might be helpful: (Perhaps you got similar answers already, I'm behind with my email queue ;) > I'm pretty sure the file should be called "Localizable.strings", not > "Localized.strings". > > Dave > > Sent

Re: Localized sorting of a Core Data entity

2011-04-08 Thread Ray
First: Quincey, Dado, Chase, WT, thanks for your comments, much appreciated! On Apr 7, 2011, at 6:53 PM, Quincey Morris wrote: > On Apr 7, 2011, at 03:06, Ray wrote: > >> Right, I tried something like this earlier, but when I use >> >> - (NSString*) locali

Re: Localized sorting of a Core Data entity

2011-04-07 Thread Ray
ntity '... But then you would say I have to perhaps back it up by a real property? On Apr 7, 2011, at 11:13 AM, Quincey Morris wrote: > On Apr 7, 2011, at 01:09, Ray wrote: > >> When switching to the new language, the sorting in the table view is Z, Y, >> X, because it i

Localized sorting of a Core Data entity

2011-04-07 Thread Ray
t;], nil); ... When switching to the new language, the sorting in the table view is Z, Y, X, because it is using the original sort order of the "name" values... My question is: what would be a good strategy to have the whole thing sort to X, Y, Z in the table view when using the n

Re: Adding subviews to UITableViewCell's contentView and autoresizing behavior

2011-03-03 Thread Ray
Right, I kind of anticipated you were going to say that ;) I will probably do a little subclassing then... Thanks again, Luke! On Mar 4, 2011, at 2:29 PM, Luke Hiesterman wrote: > The strategy I recommend for anyone adding views to UITableViewCell is to > subclass and implement layoutSubviews.

Re: Setting a delegate on a UITextField

2011-03-03 Thread Ray
> Message: 8 > Date: Thu, 03 Mar 2011 18:29:23 -0800 (PST) > From: Jon Sigman > Subject: Re: Setting a delegate on a UITextField > To: Cocoa Developers > Message-ID: <977310.3842...@web31911.mail.mud.yahoo.com> > Content-Type: text/plain; charset=us-ascii > > Okay, part II: > > Is there a way t

Re: Adding subviews to UITableViewCell's contentView and autoresizing behavior

2011-03-03 Thread Ray
idth of the subview, but I wanted to make things simpler). Because my fixed-width accessoryView will always be there (in my cell's implementation in the real app that is), would you consider it good practice to take into account the offset in defining my subview's w

Adding subviews to UITableViewCell's contentView and autoresizing behavior

2011-03-03 Thread Ray
soryView? I couldn't find this in the documentation nor the list archive, so if anyone could enlighten me, much appreciated! I would also be interested in workarounds... Thanks! - Ray. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Decoder problem

2010-01-23 Thread Austin Ray
I'm trying to play video in an iPhone application. However, whenever I load the application onto my device and try to play video, I get this in the console in XCODE: warning: Unable to read symbols for "/Developer/Platforms/iPhoneOS.platform/DeviceSupport/3.1.2 (7D11)/Symbols/System/Library/Vi

Synchronous application launch

2008-10-02 Thread Ray Ruvinskiy
g and that therefore LSOpenApplication should continue blocking. Is this behaviour expected, is this a bug, or am I simply doing something wrong? I am using Mac OS X 10.5.4 on a Core 2 Duo Mac Mini. Thanks, Ray ___ Cocoa-dev mailing list (Cocoa

Limiting NSWorkspace launchApplication to a specific version

2008-05-21 Thread Ray Ruvinskiy
Is there a way to tell NSWorkspace only to launch a specific version of an application (matched against CFBundleVersion in Info.plist)? Thanks, Ray ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or