Self contained command line tool

2012-10-12 Thread Charlie Dickman
I have created a command line tool that executes correctly in the debugger. How do I get the built binary to execute independently without starting the Terminal app. Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev

System Menu Bar

2012-09-03 Thread Charlie Dickman
Is there a way to make the system menu bar transparent from within a cocoa app? Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list

App memory

2012-08-16 Thread Charlie Dickman
Is there a system command or any other way to get application memory stats like vm_stat does for the whole system? Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests

Re: App memory

2012-08-16 Thread Charlie Dickman
Thanks. If integral max resident set size means the amount of memory being used then that's exactly what I want. On Aug 16, 2012, at 11:30 AM, Stephen J. Butler wrote: getrusage? On Thu, Aug 16, 2012 at 9:39 AM, Charlie Dickman 3tothe...@comcast.net wrote: Is there a system command

Why no keyboard or mousedown events?

2012-08-15 Thread Charlie Dickman
When my app is running menu bar requests are honored in a timely fashion but neither keyboard shortcuts nor mouse clicks not in the menu bar are. Can anybody tell me why and what to do about it? Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev

Where do these come from...

2012-08-15 Thread Charlie Dickman
: jDieDrawRect fromRect: imageRect2 operation: NSCompositeSourceOver fraction: 1.0]; What can I do to eliminate these errors? I know the simple answer is to make the context valid but I don't know how to do that. Charlie Dickman

Re: Where do these come from...

2012-08-15 Thread Charlie Dickman
unlockFocus]; [[self window] flushWindow]; } without the lockFocus the images never show. On Aug 15, 2012, at 10:35 PM, Stephen J. Butler wrote: On Wed, Aug 15, 2012 at 10:20 AM, Charlie Dickman 3tothe...@comcast.net wrote: [[NSColor whiteColor] set]; [die1 drawInRect

Re: Where do these come from...

2012-08-15 Thread Charlie Dickman
, Charlie Dickman 3tothe...@comcast.net wrote: Here's the whole method... it is being called from within a view's drawRect method... Are you calling drawRect directly from your code? If so, don't do that. You should be sending one of the setNeedsDisplay messages, and letting AppKit call

Re: How do I get memory usage numbers?

2012-08-13 Thread Charlie Dickman
. What I want to do is determine the ratio of inactive to free in order to determine when to execute the purge command to free up the inactive memory before the system gets into trouble. On Aug 13, 2012, at 1:56 PM, David Duncan wrote: On Aug 12, 2012, at 7:10 PM, Charlie Dickman 3tothe

Using NSPipe to get system command output

2012-08-13 Thread Charlie Dickman
vmDataLength = 0; do { vmData = [vmRead availableData]; vmDataLength = [vmData length]; } while (vmDataLength != 0); Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com

Re: Using NSPipe to get system command output

2012-08-13 Thread Charlie Dickman
PM, Jens Alfke wrote: On Aug 13, 2012, at 2:17 PM, Charlie Dickman 3tothe...@comcast.net wrote: int vmDataLength = 0; do { vmData = [vmRead availableData]; vmDataLength = [vmData length]; } while (vmDataLength != 0); Don't you mean == 0

Re: Using NSPipe to get system command output

2012-08-13 Thread Charlie Dickman
So why doesn't it work??? On Aug 13, 2012, at 7:08 PM, Ken Thomases wrote: On Aug 13, 2012, at 5:09 PM, Jens Alfke wrote: On Aug 13, 2012, at 2:17 PM, Charlie Dickman 3tothe...@comcast.net wrote: int vmDataLength = 0; do { vmData = [vmRead availableData

Re: Using NSPipe to get system command output

2012-08-13 Thread Charlie Dickman
of it should still work. https://github.com/aglee/MoreArty --Andy On Aug 13, 2012, at 6:42 PM, Kyle Sluder k...@ksluder.com wrote: On Mon, Aug 13, 2012, at 02:17 PM, Charlie Dickman wrote: I'm trying to get the output from a vm_stat command using the following code. My app hangs in the [vmRead

How do I get memory usage numbers?

2012-08-12 Thread Charlie Dickman
How do I get system memory usage numbers within my app? Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators

Re: How do I get memory usage numbers?

2012-08-12 Thread Charlie Dickman
be a better way to find out how it's done. On Aug 12, 2012, at 7:17 PM, Jens Alfke wrote: On Aug 12, 2012, at 3:21 PM, Charlie Dickman 3tothe...@comcast.net wrote: How do I get system memory usage numbers within my app? What kind of memory usage numbers? There are a lot of different ones — take

Re: How to...

2012-08-11 Thread Charlie Dickman
a saved combined system package. There is a real problem in the speech synthesizer. On Aug 9, 2012, at 9:54 PM, Charlie Dickman wrote: I have solved my problem as follows; if there is any memory leak inside the speech synthesizer it is isolated to the spawned task and is short lived

How to...

2012-08-09 Thread Charlie Dickman
into using an NSPipe but it doesn't seem to add anything. I think what I want to do is execute the command ls -f file | say but I can't figure out how to do that. Can someone help me? Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa

Re: How to...

2012-08-09 Thread Charlie Dickman
: On Aug 9, 2012, at 10:00 AM, Charlie Dickman 3tothe...@comcast.net wrote: NSTask *ls = [[NSTask alloc] init]; NSFileHandle *stdIn = [NSFileHandle fileHandleForReadingAtPath: txtFilePath]; [ls setStandardInput

Re: How to...

2012-08-09 Thread Charlie Dickman
, at 6:05 PM, Charlie Dickman wrote: I tried the Speech Synthesizer Manager too. It suffers from the same deficiency that NSSpeechSynthesizer does. I suspect that NSSpeechSynthesizer uses the Speech Synthesis Manager internally. On Aug 9, 2012, at 2:51 PM, Ken Thomases wrote: On Aug 9, 2012

Re: Power Nap causing NSTimer to fire immediately

2012-08-04 Thread Charlie Dickman
Subscription: https://lists.apple.com/mailman/options/cocoa-dev/3tothe4th%40comcast.net This email sent to 3tothe...@comcast.net Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin

Re: Invalidate non-repeating NSTimer after fired?

2012-08-03 Thread Charlie Dickman
to 3tothe...@comcast.net Charlie Dickman 3tothe...@comcast.net ___ 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

Re: Hang detection

2012-07-29 Thread Charlie Dickman
/3tothe4th%40comcast.net This email sent to 3tothe...@comcast.net Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators

Re: looking for a memory problem

2012-07-17 Thread Charlie Dickman
/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/3tothe4th%40comcast.net This email sent to 3tothe...@comcast.net Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do

Re: looking for a memory problem

2012-07-17 Thread Charlie Dickman
...@comcast.net Charlie Dickman 3tothe...@comcast.net ___ 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: looking for a memory problem

2012-07-17 Thread Charlie Dickman
Never mind. It originates in Xcode 4 and I don't use Xcode 4. On Jul 17, 2012, at 11:52 AM, Charlie Dickman wrote: What is ARC and where can I read learn about it? On Jul 17, 2012, at 11:42 AM, Sean McBride wrote: On Tue, 17 Jul 2012 12:30:39 +0200, Martin Hewitson said: This started

Re: Modal event processing

2012-07-06 Thread Charlie Dickman
be easier to do it with accessibility API, so you can write a normal Cocoa App and a write another app to mimic user interaction to this cocoa app. -Jonny 在 2012-7-6,上午3:57,Charlie Dickman 3tothe...@comcast.net 写道: I have a demonstration app that is basically operating on a 0.15 second

Re: Modal event processing

2012-07-06 Thread Charlie Dickman
with the versatility of timers. I'll have to re-architect the app. Thanks again. On Jul 6, 2012, at 7:24 AM, Uli Kusterer wrote: On 05.07.2012, at 21:57, Charlie Dickman wrote: I have a demonstration app that is basically operating on a 0.15 second timer loop. The problem I am having is that even

Re: Modal event processing

2012-07-06 Thread Charlie Dickman
for the user. I think it is worth a try in your case before you rethink your application. [[[Brainchild alloc] initWithName:@Richard Altenburg] saysBestRegards]; Op 6 jul. 2012, om 15:38 heeft Charlie Dickman het volgende geschreven: I'll have to re-architect the app. Charlie Dickman 3tothe

Modal event processing

2012-07-05 Thread Charlie Dickman
but is typically called with a value of 0.15) but none of this improves response. Is there anything else to try? Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator

Re: Modal event processing

2012-07-05 Thread Charlie Dickman
Correct, by your say so, or not if the timers don't drive the program it just sits there and does nothing. Human intervention is required to configure it or cause it to quit. On Jul 5, 2012, at 8:24 PM, Graham Cox wrote: On 06/07/2012, at 5:57 AM, Charlie Dickman wrote: I have

Re: Transparent NSTextField

2012-06-28 Thread Charlie Dickman
: https://lists.apple.com/mailman/options/cocoa-dev/3tothe4th%40comcast.net This email sent to 3tothe...@comcast.net Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests

Re: NSWindow AutoSave

2012-06-22 Thread Charlie Dickman
the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/3tothe4th%40comcast.net This email sent to 3tothe...@comcast.net Charlie Dickman 3tothe...@comcast.net

Re: NSTextField Selection

2012-06-15 Thread Charlie Dickman
://lists.apple.com/mailman/options/cocoa-dev/3tothe4th%40comcast.net This email sent to 3tothe...@comcast.net Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator

Re: Authorization to copy a file -- is it really that complex?

2012-06-14 Thread Charlie Dickman
the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/3tothe4th%40comcast.net This email sent to 3tothe...@comcast.net Charlie Dickman 3tothe...@comcast.net

Data encryption

2012-06-06 Thread Charlie Dickman
Can someone direct me to some documentation on how to do data encryption in Cocoa/Objective C/C? Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments

Re: Data encryption

2012-06-06 Thread Charlie Dickman
/Security/Conceptual/Security_Overview/CryptographicServices/CryptographicServices.html#//apple_ref/doc/uid/TP3976-CH3-SW1 Mikkel On 6 Jun 2012, at 18:51, Charlie Dickman wrote: Can someone direct me to some documentation on how to do data encryption in Cocoa/Objective C/C? Charlie

Re: Data encryption

2012-06-06 Thread Charlie Dickman
the encryption/decryption methods. I have tried packages that are available on the internet (AquaPrime, SSCrypto) but they are difficult to manage and require a lot of busy work to keep up to date. On Jun 6, 2012, at 1:12 PM, Jens Alfke wrote: On Jun 6, 2012, at 9:51 AM, Charlie Dickman wrote: Can

Re: NSTextView selection

2012-06-04 Thread Charlie Dickman
the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/3tothe4th%40comcast.net This email sent to 3tothe...@comcast.net Charlie Dickman 3tothe...@comcast.net

Memory use

2012-05-28 Thread Charlie Dickman
Is (Are) there functions that report application memory usage, as a whole, on the stack, in the autorelease pool, in the heap? Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin

Losing memory

2012-05-27 Thread Charlie Dickman
) yet the app continues to die for lack of memory. Does anyone know of a next step I can take to help track down this problem? Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin

Re: Dissappearing string

2012-05-16 Thread Charlie Dickman
wrote: On 15/05/2012, at 11:38 AM, Charlie Dickman wrote: Note that the retainCount has changed in the first case but not in the second. Does anyone have any ideas as to what is happening? No, but relying on, peeking at or otherwise taking any notice of retain counts is a sure path

Re: Dissappearing string

2012-05-16 Thread Charlie Dickman
working again. However, as you can see, theAttributedString itself is not mutable. Thanks millions! On May 16, 2012, at 1:13 PM, Jens Alfke wrote: On May 16, 2012, at 9:44 AM, Charlie Dickman wrote: The actual problem is that I am telling an NSTextfield to set it's contents (the method

Re: Dissappearing string

2012-05-16 Thread Charlie Dickman
An excellent observation! That was probably causing all kinds of problems yet to be seen! Thanks so much! On May 16, 2012, at 1:51 PM, Stephen J. Butler wrote: On Wed, May 16, 2012 at 12:39 PM, Charlie Dickman 3tothe...@comcast.net wrote: possible[strlen(possible)] = '\0

Re: Dissappearing string

2012-05-16 Thread Charlie Dickman
seems more likely. --Graham Charlie Dickman 3tothe...@comcast.net ___ 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

Dissappearing string

2012-05-15 Thread Charlie Dickman
has changed in the first case but not in the second. Does anyone have any ideas as to what is happening? Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator

Dissappearing textField string value

2012-05-13 Thread Charlie Dickman
could possibly make the stringValue disappear like this? Charlie Dickman 3tothe...@comcast.net ___ 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

Re: Basic Question

2012-05-09 Thread Charlie Dickman
requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/3tothe4th%40comcast.net This email sent to 3tothe...@comcast.net Charlie Dickman 3tothe

Re: self.myTextField.stringValue = @ fails

2012-05-08 Thread Charlie Dickman
not satisfying: aString != nil @ is the nil string and the compiler is smart enough to make the substitution. Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator

Re: Strange issue in stroking a bezier path

2012-05-04 Thread Charlie Dickman
Subscription: https://lists.apple.com/mailman/options/cocoa-dev/3tothe4th%40comcast.net This email sent to 3tothe...@comcast.net Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests

Re: Tracking down SIGABRTs

2012-04-29 Thread Charlie Dickman
admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/3tothe4th%40comcast.net This email sent to 3tothe...@comcast.net Charlie Dickman

Re: nstextfield question

2012-04-27 Thread Charlie Dickman
Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/3tothe4th%40comcast.net This email sent to 3tothe...@comcast.net Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev

Re: WWDC

2012-04-25 Thread Charlie Dickman
/options/cocoa-dev/3tothe4th%40comcast.net This email sent to 3tothe...@comcast.net Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list

Tabbing between text fields

2012-04-18 Thread Charlie Dickman
I have many textfields in an app and I receive the various delegate method messages as editing proceeds. I'd like to tab to the next text field when an acceptable value has been entered. Is there a way to do this from within one of the delegate methods? Charlie Dickman 3tothe...@comcast.net

Fwd: Fielding a mouseDown in a textField

2012-04-05 Thread Charlie Dickman
Begin forwarded message: From: Charlie Dickman 3tothe...@comcast.net Date: April 5, 2012 9:28:41 AM EDT To: Graham Cox graham@bigpond.com Subject: Re: Fielding a mouseDown in a textField Sorry. I am writing a Sudoku program and for a standard sudoku puzzle text fields do the job

Fielding a mouseDown in a textField

2012-04-04 Thread Charlie Dickman
Good people, How do I go about fielding a mouseDown event in an NSTextField? Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact

magic trackpad

2011-04-25 Thread Charlie Dickman
to separate the trackpad messages from the mouse messages? Do mouse events have an attribute that distinguishes the trackpad from the mouse? What am I missing or can the trackpad only emulate the mouse? Charlie Dickman 3tothe...@comcast.net ___ Cocoa

Re: OS X Desktop

2010-12-07 Thread Charlie Dickman
Thanks Seth. I'll look into AppleScript. Can't you write to the .DS_Store file with root privilege? On Dec 7, 2010, at 1:10 AM, Seth Willits wrote: On Dec 6, 2010, at 3:11 PM, Charlie Dickman wrote: In the days of System 9 there was a thing known as the desktop database and a number

OS X Desktop

2010-12-06 Thread Charlie Dickman
it and how to save it with no luck. I was wondering if anyone on this list could help me in my quest. Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments

Re: Elapsed time vs sleep

2010-07-26 Thread Charlie Dickman
to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/3tothe4th%40comcast.net This email sent to 3tothe...@comcast.net Charlie Dickman 3tothe...@comcast.net

Re: Elapsed time vs sleep

2010-07-26 Thread Charlie Dickman
such as Mac Pros, iMacs, iPhones, etc. On Jul 26, 2010, at 12:12 PM, Kyle Sluder wrote: On Jul 26, 2010, at 8:32 AM, Charlie Dickman 3tothe...@comcast.net wrote: Try using an NSTimer with a repeating timeout interval of, say, .001 (or anything smaller than your required accuracy), and countdown

Re: dynamically change circle size held in NSBezierPath

2010-07-25 Thread Charlie Dickman
This email sent to 3tothe...@comcast.net Charlie Dickman 3tothe...@comcast.net ___ 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

Fast enumeration

2010-07-22 Thread Charlie Dickman
one accomplish the same thing? Charlie Dickman 3tothe...@comcast.net ___ 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

Re: Debugger hangs?

2010-07-21 Thread Charlie Dickman
/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/3tothe4th%40comcast.net This email sent to 3tothe...@comcast.net Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com

NOAA data feeds

2010-07-20 Thread Charlie Dickman
. Charlie Dickman 3tothe...@comcast.net ___ 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/Update

Re: Encrypting data in a Core Data SQL store for a Mac desktop app

2010-07-20 Thread Charlie Dickman
This email sent to 3tothe...@comcast.net Charlie Dickman 3tothe...@comcast.net ___ 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

Re: case-insensitive but case-ordered sort

2010-07-20 Thread Charlie Dickman
(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/3tothe4th%40comcast.net This email sent to 3tothe...@comcast.net Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa

Re: There must be a better way

2009-12-25 Thread Charlie Dickman
of interface. Examples of this are very common in AppKit and UIKit, such as NS/UITableView or UIImagePickerController. -- David Duncan @ My iPhone On Dec 23, 2009, at 2:19 PM, Charlie Dickman 3tothe...@comcast.net wrote: In an iPod Touch/iPhone app where the view is in 1 xib and it's

Re: There must be a better way

2009-12-25 Thread Charlie Dickman
Except the view and the controller are in separate xib's so they can't be connected in this way. On Dec 23, 2009, at 4:08 PM, Seth Willits wrote: On Dec 23, 2009, at 11:19 AM, Charlie Dickman wrote: In an iPod Touch/iPhone app where the view is in 1 xib and it's controller

Re: [textView:shouldChangeTextInRanges:replacementStrings:] When does this type of event occur?

2009-12-25 Thread Charlie Dickman
This email sent to 3tothe...@comcast.net Charlie Dickman 3tothe...@comcast.net ___ 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

There must be a better way

2009-12-23 Thread Charlie Dickman
been declared id controller; . . . @property (nonatomic, assign) id controller; in myView.h with synthesize controller in myView.m? Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post

Linking xib's

2009-12-17 Thread Charlie Dickman
the necessary nib but simply loading an xib in the iPhone OS doesn't resolve the IBOutlet. Can someone instruct me or direct me to sample code that shows how this is accomplished? Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa

Re: Linking xib's

2009-12-17 Thread Charlie Dickman
the controller and the view are in _different_ xib's? On Dec 17, 2009, at 1:02 PM, Quincey Morris wrote: On Dec 16, 2009, at 13:20, Charlie Dickman wrote: When the didReceiveMemoryWarning notification is sent to the controller I want to invoke a method in the main view. This means linking

Re: Linking xib's

2009-12-17 Thread Charlie Dickman
I have discovered the answer. The controller knows about the view without me doing any linkage. It is referenced using [self view] in the controller. On Dec 17, 2009, at 4:07 PM, Shawn Erickson wrote: On Thu, Dec 17, 2009 at 12:46 PM, Charlie Dickman 3tothe...@comcast.net wrote

Sound on iTouch

2009-12-12 Thread Charlie Dickman
and it makes no sound either but works fine in the simulator. Can anyone help me with this? Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list

Re: Core Data Conundrum

2009-12-12 Thread Charlie Dickman
Charlie Dickman 3tothe...@comcast.net ___ 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/Update

iPhone voice synthesis

2009-12-11 Thread Charlie Dickman
Is there a way to do voice synthesis on the iPhone/iTouch like there is in OS X Cocoa using a [NS}voiceSynthesizer? Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests

.h file won't load

2009-12-10 Thread Charlie Dickman
/NSStringDrawing.h the compiler reports that no such file can be found. Looking in the Appkit/headers folder it definitely is there. What do I have to do to get the compiler to recognize it? Charlie Dickman 3tothe...@comcast.net___ Cocoa-dev mailing list (Cocoa-dev

String attributes in the iPhone SDK

2009-12-10 Thread Charlie Dickman
how to accomplish the same thing in the iPhone SDK. Can anybody help me? Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact

Trying blocks

2009-10-30 Thread Charlie Dickman
()) {... It compiles fine but the load fails with... __NSConcreteGlobalBlock, referenced from: ___block_holder_tmp_1.1207 in Controller.o ld: symbol(s) not found collect2: ld returned 1 exit status Can anyone explain this and help me with what I'm not doing or not doing right? Charlie

Breakpoint bubbles

2009-10-30 Thread Charlie Dickman
Breakpoint bubbles have started showing in the midst of my debugging window for each breakpoint I have set. What have I done to cause this and how do I stop it from happening? Charlie Dickman 3tothe...@comcast.net ___ Cocoa-dev mailing list

NSView confusion

2008-08-20 Thread Charlie Dickman
this synchronization? And how can I force a view to update? Invoking [view display] has no effect on forcing the display toshow the latest update. Thanks for any help you can provide. Charlie Dickman [EMAIL PROTECTED] ___ Cocoa-dev mailing list

Re: NSView confusion

2008-08-20 Thread Charlie Dickman
On Aug 20, 2008, at 11:08 AM, Joseph Kelly wrote: On Aug 20, 2008, at 7:25 AM, Charlie Dickman wrote: I have an app that contains multiple NSView's which are all visible at the same time. They are all sub-classes of NSView but not of any of the others. Each has its initialize

Re: Calling an object from a C function

2008-08-19 Thread Charlie Dickman
This email sent to [EMAIL PROTECTED] Charlie Dickman [EMAIL PROTECTED] ___ 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: Calling an object from a C function

2008-08-19 Thread Charlie Dickman
Thanks to all who responded. I must have had a mental block against this. Now, how do I define things like 'self' and 'super' to a C program? On Aug 19, 2008, at 7:38 PM, David Duncan wrote: On Aug 19, 2008, at 4:28 PM, Charlie Dickman wrote: from within a C (not Objective C) function

NSView confusion

2008-08-18 Thread Charlie Dickman
I have tried everything I can think of and have tried the documentation I can find and I still can not figure out what is going on or what to do about it. I have an app that contains multiple NSView's which are all visible at the same time. They are all sub-classes of NSView but not of any

creating a voice

2008-07-26 Thread Charlie Dickman
Can anybody direct me to documentation and or example code that explains/shows how to implement a voice for use in OS X? Charlie Dickman [EMAIL PROTECTED] ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests