I too am trying to do this, and what I've determined is that bundles are used for this functionality. You can put the object code in a bundle and load the bundle dynamically. Eac…
There are two basic ways to do it. One is to define a generic class for plugin makers to extend by subclassing, much like how the NSView architecture in Cocoa itself works. Another…
I've been trying to get the Gimp installed.. and most has been going smoothly.
I'm using fink and it just stopped with an error. I redownloaded the library and tried again but it …
There is actually a fink users list for discussion of these problems. But to me it looks like you have installed Tenon's Xtools, which installs a bogus /usr/local/include/malloc.h …
My girlfriend is interested in a tech career. Would you guys recommend a career in tech? She's already taking CS, but she is mulling over what to specialize in. I'm hoping your fee…
Quote:
Originally posted by NeoMac:
Programming? Web application development? Databasing? Networking? System admin? etc..?
Well, I've done most of these at one t…
Agreed, it seriously depends on her personality.
Is she good at seeing the whole picture, making creative leaps, and quickly understanding new ideas? If so, go for programming or…
I've also done most of these things at some time and I would agree with the others here. Being a sys admin gives you job security but can be hell in that you often have to force yo…
Alrighty, so I made a nice Custom NSWindow in Coca-Java that I could drag around and resize. There's only one catch: after dragging it a around enough, I will eventually get it to…
Hmm... that looks like a stack trace of native code, and you probably want a Java stack trace. Have you set your executable target in Project Builder to use the Jav debugger instea…
Quote:
Originally posted by Rickster:
<STRONG>Hmm... that looks like a stack trace of native code, and you probably want a Java stack trace. Have you set your exec…
This must be a very serious problem, cause it even crashes the java debugger! And I just found out that using the QT API's likes to make my interface totally unresponsive. How ca…
I added a new window to my app by subclassing NSWindowController and creating a new nib file. I connected everything up and then I created a method in my main controller file that …
Do these mean anything?
warning: &lt;CocoaMed&gt;CocoaMed.app depends on itself
...updating 10 target(s)...
BuildPhase CocoaMed.app
Completed phase &lt;CopyHeaders&am…
Well, I figured it out. Those two definitions of reference were because I unintentionally did this:
#import "reference.m" instead of:
#import "reference.h"
kman
I would like to learn a bit more about the plain C language and then hopefully start to learn OS X programming using Carbon. I installed the OS X 10.1 developer tools and looked a…
Try /usr/include. Most non-framework stuff can be found by rooting around in there. (If you want to use the finder to navigate instead of the terminal, you can type "open /usr/incl…
Thank you aleph_null, you are a great help. I look around at /usr/include and sure enough stdio.h and others are there.
I created an empty project, write a hello world C program …
Quote:
Originally posted by Rickster:
<STRONG>For more sophisticated command line GUI-wrapping, you'd do well to use either Cocoa (ObjC/Java) or REALbasic.</STR…
Ok....so I've set up some shell scripts and they work ok. Now I want to make them pretty by attaching a GUI via Applescript. I've done this nicely with one line UNIX commands which…
in the current version of AppleScript, the do shell script command only works for non-interactive programs (i.e. ones that run, print something, and exit; not ones which run contin…
Quote:
Originally posted by BostonMACOSX:
<STRONG>Ok....so I've set up some shell scripts and they work ok. Now I want to make them pretty by attaching a GUI via A…
one thing you can do if expect is installed on the system is write an expect script to interact with your shell scripts.
Then you can use studio as a front end to write a text fil…