| Thread | Last Post | Replies |
|
| how to implement backtrace on OSX? | 09 Oct 2007 07:42 GMT | 1 |
I am trying to port a linux program to OSX. As part of the OS-specific portion of this porting, i noticed that OSX (BSD) does not support backtrace() and has no execinfo.h. I have tried the following code (found somewhere on the net) as an
|
| creating files... | 08 Oct 2007 11:40 GMT | 7 |
I need to do something really simple - create a new TXT file, write bytes to it, close it. I looked at FSCreateFileUnicode but it looks like a pain in the butt..
|
| zerolink | 06 Oct 2007 13:42 GMT | 19 |
my debug build links fine .. and runs... it has zerolink ON my release build has all sorts of linker errors, and zerolink is OFF. xcode tells me that zerolink is not for release builds... what is going on here...? how do I get it to link in the release
|
| Static Code Analysis tools for OS X development | 06 Oct 2007 08:19 GMT | 1 |
I just took over a team, and have found that many of the basic software engineering practces, well, need a little help. Got the source code management under control. I am now looking to see if there is any basic automation that I can do around static source
|
| always on top | 04 Oct 2007 23:56 GMT | 6 |
I have a cocoa NSPanel that pops up... but it is often hidden behind other windows on the desktop ... how do I make it 'always on top' of other windows? TIA
|
| Coding Transition from VB | 04 Oct 2007 12:18 GMT | 2 |
Can anybody offer me some suggestions for transitioning into programming for Mac? Language, editor, software, etc. I'm very familiar with VB and want to begin a few projects on my Mac at home. The easier the transition the better.
|
| Getting bundle size | 04 Oct 2007 01:26 GMT | 2 |
I have just a question. How can I get bundle size ? (like Finde's Show Infomation does..) Is there any API? Or should I count all file's size in the bundle
|
| Creating one image from two (followup) | 03 Oct 2007 18:57 GMT | 6 |
I got this working, but I have a followup question: Does finalImage receive a retain message? Looking at the docs in AppKido, it doesn't say at all, although it makes sense that it does get a retain.
|
| memory bus utilization | 02 Oct 2007 21:30 GMT | 7 |
is their a "top" for the traffic on the memory bus? kinda like "netstat" for IP packets, but monitors the transfer rates to/from RAM instead? i'm trying to optimize the performance of a custom memory-intensive
|
| static code analysis tools for OS X development | 02 Oct 2007 03:45 GMT | 1 |
I just took over a team, and have found that many of the basic software engineering practces, well, need a little help. Got the source code management under control. I am now looking to see if there is any basic automation that I can do around static source
|
| Create one image from two | 01 Oct 2007 18:24 GMT | 2 |
I'd like to take two images and create one image from them both. To be clear, I don't want to mix them in any way, just 'paste' them together, ala: 1 + 2 => 12 I've looked at NSImage and Core Image, but I don't think those are the
|
| Animating NSStatusBar | 01 Oct 2007 18:24 GMT | 2 |
I asked this on the cocoa-dev mailing list and only got reply, so I thought I'd ask here just to see if there anymore ideas. To wit: I'd like to animate the image I use in my NSStatusBar. A fade-out of the old and a fade-in to the new. I looked at NSAnimation and that only
|
| WebView: which HTML element has initiated the request | 01 Oct 2007 15:59 GMT | 2 |
When a WebView object loads a web page I can use the WebResourceLoadDelegate methods to get all the resource requests for the web page and this way it's even possible to filter out requests by manipulating/redirecting the requests in the method...
|
| improve performance while drawing | 01 Oct 2007 07:32 GMT | 5 |
Currently i am trying to improve performance of my window while drawing on that window.i am storing my each points into one buffer on mouse down and mouse move event.and after that i am calling [self setNeedDisplay:YES] method from mouseDown and
|