Ok I hope someone can help me. I need to get this working.
Here is what I am doing. I have a class called Object, it is set up
like this:
-- Object.h
@interface Object : NSObject
{
NSNumber*objectID;
NSNumber*mass;
Yep I figured it out. That was it. Just a stupid on my part.
Thanks.
On Sep 19, 2008, at 9:31 AM, Jim Correia wrote:
On Sep 19, 2008, at 11:18 AM, development2 wrote:
Ok I hope someone can help me. I need to get this working.
Here is what I am doing. I have a class called Object, it is set
___
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 your Subscription:
http://lists.apple.com
___
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 your Subscription:
http://lists.apple.com
(I hope this goes through this time, I have tried twice and this text
would not go through)
Iam hoping I can get some help here. I have not done any bindings yet
asmost of the programs I have written over the last couple of years
hadto support clear back to 10.2, so now I am done with that and I
sts.apple.com
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/development2%40bitblasters.com
This email sent to [EMAIL PROTECTED]
___
Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)
Please do not post a
I am hoping someone can help me figure out the best way to handle
this, I am sure someone out there has some experience with this.
I have some code that sends a command to an external hardware device
and waits to get the response back with the info that was requested of
the device. Now what
On Jan 8, 2009, at 11:58 PM, Ken Thomases wrote:
On Jan 8, 2009, at 7:49 PM, Nathan Kinsinger wrote:
On Jan 8, 2009, at 4:20 PM, development2 wrote:
I am hoping someone can help me figure out the best way to handle
this, I am sure someone out there has some experience with this.
I have
t out, and not have to worry about that part.
Thanks,
On Feb 2, 2009, at 8:58 AM, glenn andreas wrote:
On Feb 2, 2009, at 9:34 AM, development2 wrote:
I need to get all the textr from my app and plugins. Most of the
text is in .string files so that is easy. But how do I pull the
text form t
I need to get all the textr from my app and plugins. Most of the text
is in .string files so that is easy. But how do I pull the text form
the UI in my .nib/.xib file to go out for translation? Then how do i
put it back properly. I am thinking I may have to change the app and
plugins to put
save myself
a lot of work.
On Feb 2, 2009, at 2:44 PM, Ricky Sharp wrote:
On Feb 2, 2009, at 12:35 PM, development2 wrote:
Yes I understand that. I will have to modify/resize the UI once I
have the strings in there. But the people who we are sending the
strings out to be localized do no
This is off topic, just want to get some peoples opinion on this.
I have been asked to port a game from Flash to the Mac (actually the
iPhone, but that does not matter in this case). I am wondering if Core
Animation is up to the task, of display and moving 30-50 units on the
screen at one t
hat other platform will also be something
you'll have to investigate yourself.
-Matt
On Oct 3, 2008, at 11:32 AM, development2 wrote:
This is off topic, just want to get some peoples opinion on this.
I have been asked to port a game from Flash to the Mac (actually
the iPhone, but that doe
Ok., I am sure I have seen one but can't seem to find it. I need an
Open Source class to call a command line program with a couple of
arguments. Does any one know of any and where I can find one?
Thanks.
___
Cocoa-dev mailing list (Cocoa-dev@lists.
Yeah I know about NSTask, I just can't get it too work correctly.
On Oct 16, 2008, at 2:14 PM, Ken Thomases wrote:
On Oct 16, 2008, at 3:09 PM, development2 wrote:
Ok., I am sure I have seen one but can't seem to find it. I need an
Open Source class to call a command line prog
I know it is something I am doinig but I am getting an error I can't
seem to figure out. Here the code and then the error.
NSString *exePath = [[NSBundle
bundleWithIdentifier:@"com.yourcompany.SetupDevice"]
pathForResource:@"upnpsearch" ofType:@""];
RunComm
Yep... I have been at this too long today. I read that and completely
disregarded it.
Thanks again.
On Oct 16, 2008, at 7:56 PM, Nick Zitzmann wrote:
On Oct 16, 2008, at 7:49 PM, development2 wrote:
RunCommand *command = [[RunCommand alloc] initWithPath:exePath
I need to create Hyperlink to the companies web site, but the link
will be in a NSTextField. How do I create a hyperlink in this text
field. I am sure it is something with NSMutableAttributedString but
can't seem to figure it out. I though maybe there was some Cocoa class
to do that, but co
Hi,
I am getting some weird warnings that I can't figure out.
/Development/Contracting Code/iTask-iPhone/trunk/iTask/Classes/
iTaskAppController.m:103: warning: assignment from distinct Objective-
C type
/Development/Contracting Code/iTask-iPhone/trunk/iTask/Classes/
iTaskAppController.m:98
Duh... OMG.
Sorry about the bandwidth waste, what an idiot I am.
On Dec 4, 2008, at 11:25 AM, Bill Bumgarner wrote:
On Dec 4, 2008, at 10:22 AM, development2 wrote:
Can anyone see what I am doing wrong. I just don't get this and of
course if I try to debug this, it freezes on that li
Hi,
I hope someone can help me. I thought I was going to be able to use
the JSON Framework from google code (http://code.google.com/p/json-framework/
) but it won't build under the 10.4 SDK. I get errors on the build,
mostly stuff that changed under 10.5. Does anyone know of a JSON
framewor
I am having a problem setting the Checkbox to show the address book
item is for a company. It seems to crash settig the value. What am I
doing wrong?
// we need to create this address item
addressItem = [[[ABPerson alloc] init] autorelease];
[addressItem setVal
On Dec 9, 2008, at 2:31 PM, Nick Zitzmann wrote:
On Dec 9, 2008, at 2:18 PM, development2 wrote:
int personFlags = [[addressItem valueForProperty:kABPersonFlags]
intValue];
That should be an NSInteger, not an int, and you should use -
integerValue instead.
Yeah thanks, saw that in
I hope someone can help me. I need to set a Min and Max length for an
NSTextField. I also need to only allow certain characters that the
user can enter. How can this be accomplished? Do I have to use an
NSFormatter? If so are there any examples that someone can point me to?
Thanks in advanc
I am having a problems playing a movie in 10.4. I have an app that
plays a couple of different movies. These play fine under 10.5+ but
under 10.4, either they don't show at all or they get resized too big,
and don't preserve the aspect ratio. Here is the code I use the load
the movie and pu
Never mind it looks like it is a QuickTime issue, with and older
version of it.
On Apr 23, 2009, at 9:50 AM, development2 wrote:
I am having a problems playing a movie in 10.4. I have an app that
plays a couple of different movies. These play fine under 10.5+ but
under 10.4, either they
26 matches
Mail list logo