Skip to main content
Search titles, bodies, and author names
Found 60,709 posts across 1 forum.

Newbie Developer - writing app, wanna help? — #6

since i could always need some practice with cocoa, sure, why not. as far as objective-c is concerned, that's kind of new to me, too, but i'm not new to programming, so... let's t…
MacNN Development by seb2

PPC little-endian mode — #3

Little-endian and big-endian refer to how numbers are interpreted by the processor. The bits that form a number can be interpreted either right-to-left or left-to-right. But, you…
MacNN Development by smeger

PPC little-endian mode — #4

</font><blockquote><font size="1" face="Geneva, Verdana, Arial, sans-serif">quote:</font><hr /><font size="1" face="Geneva, Verdana, Arial, sans-se…
MacNN Development by kupan787

PPC little-endian mode — #5

If you're using standard C, the bitwise operators are required to operate as if the data they were handling was big-endian, regardless of what the underlying platform actually supp…
MacNN Development by Amorph

PPC little-endian mode — #6

<strong>This is all on x86. Or maybe it was more data that was swapped (bytes over bits), I cant remember now. But I am almost positive it had nothing to do with the directio…
MacNN Development by skipjack

PPC little-endian mode — #7

Sorry for being unclear - I was trying to get the point across without giving a comp-sci lecture What you say is absolutely correct. Just out of curiousity, does anyone know w…
MacNN Development by smeger

PPC little-endian mode — #8

I think you have to be in supervisor mode and of course use assembly code to do the switch. Then I suppose you'd have to switch back if you want to use any system calls. Sounds lik…
MacNN Development by Seb G

PPC little-endian mode — #9

Why don't you just write some simple byte swapping functions? I don't think it is possible for Apple hardware to run in little endian mode (although I may be wrong) because various…
MacNN Development by iJed

Undefined symbols with ld — #2

A link error means that there is a line of code that is making reference to a symbol (it can be a variable, or function, etc), that has not been defined. In this case, it looks li…
MacNN Development by pedemonte

Undefined symbols with ld — #3

Yeah, I got it... actually got it figured out... they were being cut off by the preprocessor... figures I got the stuff off of sourceforge... after every revision, it's like... IT'…
MacNN Development by LordRPI

Also an easy Q: How do I set screen brightness? — #4

</font><blockquote><font size="1" face="Geneva, Verdana, Arial, sans-serif">quote:</font><hr /><font size="1" face="Geneva, Verdana, Arial, sans-se…
MacNN Hardware by PipelineStall

New to Obj-C — #2

1) - is for instance methods, + for class methods (called "static" in C++ and Java) 2) I had problems making colors, too. colorWithDeviceRed ended up working, though. 3) Don't…
MacNN Troubleshooting

New to Obj-C — #3

2) I can't seem to create RGB colors with NSColor. Do I use colorWithDeviceRed? or colorWithCalibratedRed? "Device" colors are are colors which will always use those values, on an…
MacNN Troubleshooting

New to Obj-C — #4

Quote: Originally posted by ali: "Device" colors are are colors which will always use those values, on any device. "Calibrated" colors might attempt color matching. Typi…
MacNN Troubleshooting
mp.ls