a bug in iphone SDK's creation of view based xib files.

2009-09-01 Thread jon
wires the auto stretch permanently... the incorrect code turns off auto stretch permanently but the correct code should make it the programers option to have stretching or no stretching... Jon. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple

Re: a bug in iphone SDK's creation of view based xib files.

2009-09-03 Thread jon
ond XIB view, just like the first XIB view does correctly. (even if the status bar is there, the first one is set correctly) Thanks, jon. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comm

Re: a bug in iphone SDK's creation of view based xib files.

2009-09-03 Thread jon
On Sep 3, 2009, at 6:21 AM, jon wrote: I should have mentioned in the steps that this is not a UIViewController subclass, that option should be left off to create a regular "UIView" Class...) correction, that should have said: "that this is not a UITableViewCont

Re: a bug in iphone SDK's creation of view based xib files.

2009-09-03 Thread jon
the SDK will become the perfect world :0) Jon. ___ 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

website like ebay.com's flash content crashing webKit like app?

2009-09-06 Thread jon
ge that to: "http://www.ebay.com/"; then the application crashes after a few seconds of loading.. I believe that the flash content of ebay is crashing the app?can someone confirm? is this a known bug? something wrong with flash?

Re: website like ebay.com's flash content crashing webKit like app?

2009-09-06 Thread jon
signal 2 (SIGINT). - i have 10.5 and the latest version of Safari for leopard. I am checking to see what version of flash this app would be running into... (not sure how to check that yet) Jon. On Sep 6, 2009, at 11:59

Re: website like ebay.com's flash content crashing webKit like app?

2009-09-06 Thread jon
after installing flash again from Adobe, to make sure it was the latest..(didn't help). I realized that maybe the app needs to know about a "flash" type of framework or something like that? is that type of thing needed? possible? Jon. On Sep 6, 2009, at 11:59 AM, Ky

Re: website like ebay.com's flash content crashing webKit like app?

2009-09-06 Thread jon
bactkrace you can easily copy and paste into email.) here is what it dumped out... Jon. [Session started at 2009-09-06 13:14:14 -0600.] GNU gdb 6.3.50-20050815 (Apple version gdb-967) (Tue Jul 14 02:11:58 UTC 2009) Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered

Re: website like ebay.com's flash content crashing webKit like app?

2009-09-06 Thread jon
I just unchecked it, now it runs through without the crash. so there is something in flash that is checked that shouldn't be checked?or just sort of normal and i always have to uncheck that when ever using the webkit? Jon. On Sep 6, 2009, at 1:22 PM, Jens Alfke wrote: Fla

Re: website like ebay.com's flash content crashing webKit like app?

2009-09-06 Thread jon
nchecking for that project, but it still doesn't load the flash content, (miniBrowser also never stopped at a "break point" kind of thing either though) but you've gotten me closer i think. thanks, Jon. On Sep 6, 2009, at 1:39 PM, Jens Alfke wrote: you

myOutlineView rowForItem representedObject

2009-09-09 Thread jon
what is the opposite of the "representedOject" method so that indexRow comes out correctly here below? BaseNode* node4 = [[myOutlineView itemAtRow:i] representedObject]; indexRow = [myOutlineView rowForItem: [node4 ]]; ___ Co

Bug: CalendarStore framework adding events with alarms with email address.

2009-09-13 Thread jon
e.com " though. it will just have the wrong email displayed in the iCal event.. annoying, but atleast it will work. Jon. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list

coding NSNumber in NSArray?

2009-09-14 Thread jon
rings when i look in the debugger at "allItems", the NSNumber is not well defined. thanks in advance, Jon. BookMarkNode *node1 = [[BookMarkNode alloc] init]; [node1 setTypeOfLeaf:[NSNumber numberWithInt:0]]; [node1 setN

Re: coding NSNumber in NSArray?

2009-09-14 Thread jon
. Jon. // --- - (void)setTypeOfLeaf:(NSNumber*)flag { if (!typeOfLeaf || ![typeOfLeaf isEqual:flag]) { [typeOfLeaf release]; typeOfLeaf = [flag retain]; } } On Sep 14

Re: coding NSNumber in NSArray?

2009-09-14 Thread Jon
I don't quite understand why you don't see the word "NSNumber" in my code... when you said twice incorrectly that it doesn't involve an NSNumber nor why you don't see the word "NSArray" in my code. when you said again incorrectly you don't see an array being used? Nor why you d

Re: coding NSNumber in NSArray?

2009-09-14 Thread jon
here is what is in typeOfLeaf. Jon. // --- - (NSNumber*)typeOfLeaf { return typeOfLeaf; } On Sep 14, 2009, at 2:21 PM, Kyle Sluder wrote: But we still need to see -typeOfLeaf to make sure it's doin

getting accessor method info in a different class.

2009-09-18 Thread jon
ve. (some extra stuff is added like @class to see if it would help) Jon. header of class webviewcontroller: - #import #import @interface webViewController : NSDocument { IBOutlet WebView *webView; } @property(r

access to object from a different class

2009-09-18 Thread jon
to this current webView object from a different class how does one go about getting at the instance "webView" coding wize??? Jon. header of class WebViewController: - #import #import @interface WebVi

Re: access to object from a different class

2009-09-18 Thread jon
Added info: i would try this: theWebView = [aController webView];except that the "aController" is new, and not pointing to the thing i want, the first webView's pointer to it's object instance... Jon. ___ Cocoa-dev mai

Preferencepanel.xib file with an extra delegate object place inside

2009-09-21 Thread jon
fferent object in that file) (the preference panel controller object) hopefully i can create these "extra objects in Xib files" all i want, and be-able to get around this action, because I constantly need to fire off other panels and windows from say the main menu, or preferen

automatically send the email from code using NSWorkspace

2009-09-22 Thread jon
meone point me in the correct direction? thanks in advance Jon. ___ 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

Re: automatically send the email from code using NSWorkspace

2009-09-22 Thread jon
great, found it, Thank you. do you (or someone) know how to get the current machine's default Email address for sending email? rather than typing it into a field like this. emailMessage.sender = [self.fromField stringValue]; thanks again, Jon. On Sep 22, 2009, at 8:35 PM,

redrawing a particular subview in non mainWindows.

2009-09-27 Thread jon
e to udpate the custom view down deep maybe i'm approaching it wrong too... any help would be great,(the setHidden is just there as a test, it is there so i know i've found the correct window, and eventually the correct subview) tha

Re: redrawing a particular subview in non mainWindows.

2009-09-27 Thread jon
et at the old instances of this view... thanks, Jon. On Sep 27, 2009, at 8:31 AM, Graham Cox wrote: so I'm skeptical that your description is really accurate. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin r

Re: redrawing a particular subview in non mainWindows.

2009-09-27 Thread jon
h new Document, is there an already defined "loop" of these? (a list of the open document's NSTreeController *treeController;) or do i need to make an NSMutableArray, and keep track of these myself? and then update these instances myself by looping through them? thanks

NSTextField, drawing the text offset to the right in the field

2009-09-28 Thread jon
iner on NSTextField... with no success... [addressBar setTextContainerInset:theInset]; thanks, Jon. ___ 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 c

Re: NSTextField, drawing the text offset to the right in the field

2009-09-29 Thread jon
orWithFrame? the running app shows the text field filled in properly (just not offset, as the override implementation of drawInteriorWithFrame would have done) , so it must have called the super of it somewhere. thanks for the help in advance. Jon. On Sep 28, 2009, at 9:30 PM, Matt Neubu

simpleBrowser example has setCellClass setting a cell to an instance?

2009-09-29 Thread jon
how is the simpleBrowser example that is provided with xcode doing this? [fsBrowser setCellClass: [FSBrowserCell class]]; fsBrowser is an instance, IBOutlet NSBrowser*fsBrowser; yet isn't setCellClass a class method? i tried the same thing and got a warning? thanks

Re: simpleBrowser example has setCellClass setting a cell to an instance?

2009-09-29 Thread jon
oh, i was thinking that method was inherited from the NSControl class... great, so now i still can't figure out why my custom Cell methods are not firing still looking for the problem.. Jon. On Sep 29, 2009, at 6:28 PM, Jens Alfke wrote: On Sep 29, 2009, at 5:19 PM, jon

Re: NSTextField, drawing the text offset to the right in the field

2009-09-29 Thread jon
and i don't know how to set the instance specifically... (if this class method didn't do it)? Jon. On Sep 29, 2009, at 7:06 PM, Matt Neuburg wrote: On or about 9/29/09 4:43 PM, thus spake "jon" : is properly using my custom textfield, but the custom textfield doesn't

Re: NSTextField, drawing the text offset to the right in the field

2009-09-29 Thread jon
... thanks, Jon. On Sep 29, 2009, at 7:58 PM, Kyle Sluder wrote: +setCellClass: just tells the view "Hey next time you initialize yourself, make a cell of this class." Since your ImageTextField instance was created inside of IB, this is never going to happen. Instead you need to change th

IB webview oddity/question...

2009-10-01 Thread jon
turns all of it's attributes too? if you turn one of them on, they both turn on. why are they linked? Jon. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contac

possible bug in webView big and small load sizes...

2009-10-01 Thread jon
ng on here.. interestingly, "thelength1" is always correct, on both the small and big windows... i can't find any memory reason why this would fail on small and then fly on a big window... (looking for a memory problem in my program)... Jon. DOMDocument *myD

Re: possible bug in webView big and small load sizes...

2009-10-02 Thread jon
nt with to see if i can see that behavior happen, thanks. Jon. On Oct 2, 2009, at 12:17 AM, Stephen J. Butler wrote: Does your table element have multiple attributes? The DOM Level 2 specification states that for NamedNodeMap there is no specified order to the attributes. It could just

adding a new window and controller to a Document project on startup...

2009-10-02 Thread Jon
cument object or it's window. thanks for any help in advance on letting me know the fundamental thing i'm missing in how Cocoa document based apps start up.. Jon. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post

main nib, firing a secondary nib and it's controller....

2009-10-03 Thread jon
i want to have a WindowController object and it's own nib separate from the main nib.. but i want this secondary nib and controller to fire up when the application launches... what is the best way to do that? thanks in advance

Re: main nib, firing a secondary nib and it's controller....

2009-10-04 Thread jon
thanks, as a follow up, is this the proper way to create and open the instance? (also globally, so it can be used in other parts of the app?) can this be improved on? (starting up a window Controller object and it's xib file) thanks for the suggestion. -Jon. I also need to deallo

wait for the event?

2009-10-05 Thread jon
; here is where i need to wait until i get that message, or that that method is fired... I seem to have the selector firing correctly i believe ... but i don't know how to wait until it fires? that is what i have so far... and help would be appreciated greatly.

Re: wait for the event?

2009-10-05 Thread jon
o work) (last comment has the code example that i followed...) Best way to make NSRunLoop wait for a flag to be set? - Stack Overflow thanks, jon. On Oct 5, 2009, at 3:46 PM, Matthew Mashyna wrote: Is there a reason you have to loop and wait for it to finish inste

Re: wait for the event?

2009-10-05 Thread jon
is fully loaded... so i have to use a combination, i need to put in a flagging type of thing, and have the runLoop wait for that flag, the flag needs to be in the "webViewProgressFinished" to work (it was not before).. yet i still need that flag thanks, Jon. On Oct 5

Re: wait for the event?

2009-10-05 Thread jon
rying to keep up with the young-uns who have no such baggage... I'll look into NSLock thanks, Jon. On Oct 5, 2009, at 7:45 PM, Matthew Mashyna wrote: you need some time to come around to a different way of thinking. You are thinking to

real verses Virtual memory

2009-10-10 Thread jon
g the day, and it seems like this would negatively effect the life of a disk and performance of the whole machine? Jon. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Co

Re: real verses Virtual memory

2009-10-10 Thread jon
ry variable global... but if that is proper technique, then i'll do that... are we saying there is no way to make a process use real memory? Jon. On Oct 10, 2009, at 9:04 AM, Michael Dautermann wrote: You'd probably get a much more thorough & better answer from the list if you el

Re: real verses Virtual memory

2009-10-10 Thread jon
exactly, I look at Activity monitor, "disk Activity" and i can see a spike of disk data read/writes every 20 seconds. Jon. On Oct 10, 2009, at 9:31 AM, Jean-Daniel Dupas wrote: What is real memory ? Do you want to address the RAM directly without any virtual to physic

Re: real verses Virtual memory

2009-10-10 Thread jon
no, no control over the website, but on webView i turned off all the java script and flash and stuff, so that helps with the speed, not with it using virtual memory every 20 seconds, and it does need to be 20 seconds. Jon. On Oct 10, 2009, at 9:44 AM, Michael Dautermann wrote: Is

Re: real verses Virtual memory

2009-10-10 Thread jon
, but even if there was no trigger, the disk writes are there) Jon. On Oct 10, 2009, at 10:08 AM, Shawn Erickson wrote: This is, as stated, nonsensical. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or mode

Re: real verses Virtual memory

2009-10-10 Thread jon
maybe a way to keep the process from using disk swaps as it's source of memory. Jon. On Oct 10, 2009, at 11:03 AM, Bill Bumgarner wrote: In other words: No, there isn't a way for your app to use "real memory". Or, to rephrase _

Re: real verses Virtual memory

2009-10-10 Thread jon
might see why you asked the question?and why you think that i am using it incorrectly for my particular "process"... i can see Apple label my process as using "real memory"? and "virtual memory" what does apple mean? J

Re: real verses Virtual memory

2009-10-10 Thread jon
ct 10, 2009, at 11:49 AM, Shawn Erickson wrote: Jon, please use Instruments.app ___ 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)

Re: real verses Virtual memory

2009-10-10 Thread jon
n activity monitor, do you think this thought experiment would use disk IO every 20 seconds? thanks, Jon. On Oct 10, 2009, at 11:03 AM, Bill Bumgarner wrote: 2) if there is a persistent cache -- a web cache, perhaps? -- it may be updated, c

Re: real verses Virtual memory

2009-10-10 Thread jon
ok, I have Activity monitor open, particularly to the "disk activity" tab, and the IO checked, as i said before, and i can see Disk writes every 20 secs.is there a clearer way to demonstrate that Disk IO is happening? am i fulling my self by looking at this tool? Jo

Re: real verses Virtual memory

2009-10-10 Thread jon
ahh, ok thanks, that helps a lot. Jon. On Oct 10, 2009, at 12:30 PM, Alex Kac wrote: If it was using a web cache, then yes. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the

Re: real verses Virtual memory

2009-10-10 Thread jon
thanks for doing that, it helped, cacheing hmmm... i don't think there is away around this, i need a fresh load to see if the data has changed each time at the website.It appears that disk IO is here to stay. Jon. On Oct 10, 2009, at 12:57 PM, Shawn Erickson wrote: Whi

Re: real verses Virtual memory

2009-10-10 Thread jon
oh wait, that means i can turn off cacheing, I at least can see if that will help, I'll go read up on how to turn off cacheing.. Jon. On Oct 10, 2009, at 12:57 PM, Shawn Erickson wrote: Which is exactly what I expected (and others) given the fact that by default the URL loadin

Re: real verses Virtual memory

2009-10-10 Thread jon
which is how it is displayed on the website, html formated, (i don't control the website). is there a better process? Jon. On Oct 10, 2009, at 1:06 PM, Shawn Erickson wrote: (not how it is currently doing it but why does it need to load a page? what does it do with t

Re: real verses Virtual memory

2009-10-10 Thread jon
ok, i'll do research on these.. Jon. On Oct 10, 2009, at 1:25 PM, Shawn Erickson wrote: It sounds like you need to get at the HTTP content itself and pull data out of that, right? If all you need is the HTTP content you can drop down to things like Foundation's URL Loading

Re: real verses Virtual memory

2009-10-10 Thread jon
using DOM, Jon. On Oct 10, 2009, at 1:28 PM, Shawn Erickson wrote: using WebKit's DOM API to get at the pages content? ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the

Re: real verses Virtual memory

2009-10-10 Thread jon
oh... that is good to know... hmm, well it looks like i need to go lower in the mechanism, stuff i don't know anything about, so i'll do research on the best way to get the info off the website at a lower level. Jon. On Oct 10, 2009, at 1:33 PM, Jens Alfke wrote: Many larg

Re: real verses Virtual memory

2009-10-10 Thread jon
wait, if CFNetwork is doing the caching, I would need to go lower to avoid it? what would i use to get html or xml type of info off the website, without giving the website pause for what i am doing? (or best guess on what a website might consider bad behavior) Jon. On Oct 10, 2009

Re: real verses Virtual memory

2009-10-10 Thread jon
have to know what to look for before you ever go down the correct tangent. Jon. On Oct 10, 2009, at 1:33 PM, Jens Alfke wrote: [5] You haven't described any functionality that requires using a WebView. All you need, I think, is NSURLConnectio

Re: real verses Virtual memory

2009-10-10 Thread jon
that looks promising... thanks, Jon. On Oct 10, 2009, at 3:26 PM, Jens Alfke wrote: You can check the "Last-Modified" and "ETag" headers in the NSHTTPURLResponse object and compare them to what you got last time; ___ Co

Re: real verses Virtual memory

2009-10-10 Thread jon
i was using a notification that was standard that told me when the page finished loading... does this have the same sort of mechanism? (or need it) when fetching the page? On Oct 10, 2009, at 3:26 PM, Jens Alfke wrote: If you can't use a feed, use NSURLRequest to fetch the page __

wake the screen up for an Application event...

2009-10-13 Thread jon
I can not find a method yet that will wake the display up from sleep, (if a certain type of event occurs in an Application, like an NSAlert, i want the app itself to wake up the display). thanks in advance. Jon. ___ Cocoa-dev mailing list

unsleep the display programatically?

2009-10-18 Thread jon
can you unsleep the display programatically? i haven't found a method yet for doing it? Jon. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderato

Re: unsleep the display programatically?

2009-10-18 Thread jon
no, not the machine sleep, just the display sleep...the situation would be a process that runs longer than the current display sleep time, which then pops up an alert, which no one can see, since the display is asleep... Jon. On Oct 18, 2009, at 7:12 PM, Mark Ritchie wrote: Hrm

Re: unsleep the display programatically?

2009-10-18 Thread jon
filled with light from the display waking up. surely there is a method for this? wouldn't there be? Jon. On Oct 18, 2009, at 7:25 PM, David LeBer wrote: On 2009-10-18, at 9:15 PM, jon wrote: no, not the machine sleep, just the display sleep...the situation would be a process

Re: unsleep the display programatically?

2009-10-18 Thread jon
worth a try anyway, I'll try tomorrow. thanks, Jon. On Oct 18, 2009, at 7:36 PM, David LeBer wrote: UpdateSystemActivity(UsrActivity); ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or mode

Re: unsleep the display programatically?

2009-10-19 Thread jon
that will work, because that will remind them to change that preference, thanks for doing that. Jon. On Oct 19, 2009, at 1:13 AM, Mark Ritchie wrote: After a short time of no password being entered, the screen will go back to sleep

NSString after an UIAlertView..

2010-03-18 Thread Jon
:what is the best way to keep "strings" around that i deem important enough to still have them after a call to UIAlertView.?? Jon. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comme

Re: NSString after an UIAlertView..

2010-03-19 Thread jon
a string (put something in the string) just before an "instance" of UIAlertView is created and then released, i look in the string afterward and it is out of scope. Jon. On Mar 19, 2010, at 11:06 AM, Fritz Anderson wrote: > I

UIView as opposed to UIViewController...

2010-03-06 Thread Jon
can't even call the drawRect while in the controller, so what would you do in the UIView? any of that make sense? thanks in advance, Jon. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator

MoviePlayer_iPhone sample code in XCode 3.2

2010-03-09 Thread Jon
I just tried the MoviePlayer_iPhone sample code in simulator 3.2, (i believe i am running beta 2) while it works if you set it to 3.1, as soon as you set it to 3.2, the "local' movie no longer plays? can someone confirm, and a possible reason/solution? thanks in ad

Re: DOMNode problems getting info out...

2009-08-23 Thread jon
example again: Aug 19 - http://whatever/sys/1331140637.html";>Two 1GB Apple matched pair RAM from a MacBook - $30 - (Louisville ) Jon. On Aug 23, 2009, at 8:06 AM, jon wrote: I have found that there is extremely limited documentation dealing with DOMNodeLists and DOMNode...

DOMNode problems getting info out...

2009-08-23 Thread jon
d to atleast be acknowledged as a method any help would be great... thanks, Jon. ___ 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-a

NSDateFormatter bug in timeZone

2009-04-26 Thread Jon
re it in a Data Source, it comes back out with the current time zone, and the time adjusted so that it is correct time at least... but this shouldn't happen? should it. Jon. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do

Re: NSDateFormatter bug in timeZone

2009-04-27 Thread jon
r suggestion, thanks, i'll try it with zzz, and with zzz) (I'm not sure how to properly reply to the list yet, should i reply to both You and the list? as i'm doing here) thanks, Jon. On Apr 27, 2009, at 3:27 AM, Alastair Houghton wrote: i

Re: NSDateFormatter bug in timeZone

2009-04-27 Thread jon
en_US"]]; thanks, Jon. On Apr 27, 2009, at 3:27 AM, Alastair Houghton wrote: Australian would expect EST ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the mod

Make connections between One Button and two different NSObjects?

2009-05-04 Thread Jon
from the actions of a different window Jon. ___ 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

quick and dirty NSData implosion

2009-05-08 Thread Jon
so far, what i've determined by dumbing this down, is that I must be doing something inherently bad and nubi like here... the run time just completely implodes when it gets to the "NSData" line of code any help would be great, thanks in advance. the "BookMark" is just a class with th

Re: quick and dirty NSData implosion

2009-05-08 Thread jon
list. [defaults setObject:bookMarkList forKey:PECBookMarkListKey]; so again, I must be doing something fundamentally wrong here? this also does not explain why the NSData line of code would implode, even if my assumption was wrong in that case, something else must also be wrong there. Jon.

Re: quick and dirty NSData implosion

2009-05-08 Thread jon
in the debugger, here are the last lines it followed... #0 0x91b35de9 in -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] #1 0x91b35b07 in -[NSMenu performKeyEquivalent:] #2 0x91b343ac in -[NSApplication _handleKeyEquivalent:] #3 0x91a5116b in -[NSApplication se

Re: quick and dirty NSData implosion

2009-05-08 Thread jon
sorry, I am getting emails out of order because i'm using the option that sends list in a bundle, so getting the ones that reply directly to me first, so i am looking for Dave's answer now... thanks, Jon. On May 8, 2009, at 8:40 AM, Alexander Spohr wrote: So what are you

Re: Cocoa-dev Digest, Vol 6, Issue 702

2009-05-08 Thread Jon
ya, that would be a big problem, I'm looking at how to do "NSCoding" for a class now... thanks, hey, at least i knew i was doing something fundamentally wrong... nubi Jon. On May 8, 2009, at 8:21 AM, cocoa-dev-requ...@lists.apple.com wrote: And just to make sure... your

Debugger's "global browser" does not show any globals?

2009-05-11 Thread jon
ng. but every once in a while, I'll see my application with the correct globals? I'm not sure the difference... I hope this is familiar to someone, I'd love to figure this one out. I hope it is not a common question... not sure how to search the

NSString and retain.

2009-05-11 Thread jon
t; is declared in an area that is global, and then assigned later.) I do know that "NSSTring" is "different" than other objects, but i'm not sure how, they do appear to act like other objects though as far as i can tell. thanks in advan

Re: quick and dirty NSData implosion

2009-05-11 Thread jon
it just before the last line of code. Jon. #import @interface BookMark : NSObject { int bookMarkCount; NSString *bookMarkurlString; NSString *bookMarkTitle; } @property(readwrite, assign) int bookMarkCount; @property(readwrite, assign) NSString *bookMarkurlString; @proper

example "miniBrowser" setting Garbage collection to "supported"

2009-05-13 Thread jon
hey are java) does anyone know what is being Interfered with? I can't find anything in the code that is doing this? (also, does what i'm describing happen on your development environment?) thanks in advance, Jon. ___ Cocoa-dev maili

Re: example "miniBrowser" setting Garbage collection to "supported"

2009-05-13 Thread jon
i've tested this with no changes except the "supported" garbage collection now with same results. I don't have snow. I'll send bug report # i'd really like to isolate this to the particular code that is causing this, but have been unsuccessful... not mu

Re: Custom time picker

2015-12-02 Thread Jon Hull
, Jon Sent from my iPhone > On Dec 2, 2015, at 4:22 PM, Eric Dolecki wrote: > > I need to create a time picker control but don't have much vertical room. So > buttons above and below to affect hours, min, am/pm are out. I was thinking > swipes up and down. Best to use 3 UI

NSString stringByAbbreviatingWithTildeInPath and Sandboxing

2015-01-27 Thread Jon Baumgartner
My app uses this call, and it worked fine until I sandboxed it. The documentation for this call says: > For sandboxed apps in OS X, the current home directory is not the same as the > user’s home directory. For a sandboxed app, the home directory is the app’s > home directory. So if you specifi

Re: NSString stringByAbbreviatingWithTildeInPath and Sandboxing

2015-01-27 Thread Jon Baumgartner
Yeah. The app is specifically for copying paths, and applying various transformations to the path. Developers use it but also general users. On January 27, 2015 at 2:03:46 PM EST, Jens Alfke wrote:On Jan 27, 2015, at 9:20 AM, Jon Baumgartner wrote: So how do I get /Users//file.txt to

Re: NSString stringByAbbreviatingWithTildeInPath and Sandboxing

2015-01-29 Thread Jon Baumgartner
I’m happy to do this, but is this really a bug? I was just thinking there might be an alternate way to accomplish this. On 1/27/2015 4:03 PM, Kyle Sluder wrote: Could you please file a Radar describing your use case and share the number here? ___

Re: NSString stringByAbbreviatingWithTildeInPath and Sandboxing

2015-02-04 Thread Jon Baumgartner
; existing API work in a sandbox too. > > --Kyle Sluder > > > On Jan 29, 2015, at 7:45 AM, Jon Baumgartner < > j...@bergenstreetsoftware.com> wrote: > > > > I’m happy to do this, but is this really a bug? I was just thinking > there might be an alternate way to ac

Re: NSString stringByAbbreviatingWithTildeInPath and Sandboxing

2015-03-05 Thread Jon Baumgartner
That bug has gotten no response whatsoever from Apple. Any advice on how to proceed? > On Feb 4, 2015, at 1:19 PM, Jon Baumgartner > wrote: > > I filed a radar: rdar://19716583 > > > On 1/29/2015 10:55 AM, Kyle Sluder wrote: >> Even in a sandbox, you can get the

Re: NSString stringByAbbreviatingWithTildeInPath and Sandboxing

2015-03-06 Thread Jon Baumgartner
> On Mar 5, 2015, at 2:29 PM, Jens Alfke wrote: > > > I wouldn’t expect a response from Apple in ‘only’ a month, except perhaps to > notify you that it’s a duplicate. > > If they do fix the bug, you won’t get a notification until there’s a > developer release of the OS update so you can test

init for immutable classes

2009-09-18 Thread Jon Hull
o (I was taught to always use setter methods) that I wanted to check with the list first... Thanks, Jon ___ 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

NSMenuItem & NSRuleEditor

2009-09-26 Thread Jon Hull
I must be missing something in the documentation. I am trying to populate a Rule Editor with choices from a plist file. The plan is to create and return an NSMenuItem for each string stored in the corresponding spot in a plist. Here is what IS working: • I can get the NSRuleEditor to di

Re: NSMenuItem & NSRuleEditor

2009-09-26 Thread Jon Hull
help :-) Jon On Sep 26, 2009, at 1:27 PM, Andy Lee wrote: On Sep 26, 2009, at 4:09 PM, Jon Hull wrote: • I can get the NSRuleEditor to display menuItems from a popup loaded from the XIB (as in the example I found) • I can load in the plist and confirm that the resulting dictionary/ array

Re: Creating a radar sweep effect

2009-09-27 Thread Jon Gilkison
You can do this with a single accumulating bitmap. 1. Create a bitmap the size of your view filled with the background color 2. Fill the bitmap with the background color using an alpha = 1 / number of steps 3. Draw the radar onto the bitmap 4. Draw the bitmap in the view 5. Go to step 2 (I have do

Saving for iPhone - Can core data handle this?

2009-10-12 Thread Jon Hull
ep me from spending time going down the wrong path if it isn't going to work. So, do you think core data can handle this? What approach (roughly) should I use? Thanks, Jon ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post

  1   2   3   4   >