| Thread | Last Post | Replies |
|
| lexical analizer to recognize php | 15 Jun 2005 11:08 GMT | 1 |
I've got a problem recognizing PHP code in HTML with the lexical analizer cocoa provides. I've been using regular expressions for quite some time now, but I can't seem to get this right. Here's what i've tried so far:
|
| Re: puzzle | 14 Jun 2005 22:26 GMT | 6 |
This short program #import <AppKit/NSApplication.h> int main(int argc, const char * argv[]) { [NSApplication sharedApplication];
|
| Xcode 2.0 review | 14 Jun 2005 21:23 GMT | 12 |
===== Xcode 2.0 IDE Review ===== Disclaimer: I have about 30 hours of experience with Xcode 2.0, and have no experience with previous releases. Pros:
|
| PPx with XCode? | 14 Jun 2005 15:48 GMT | 3 |
Now that I have to move (reluctantly) to XCode. Leaving PPx behind sounds like a waste of time and effort invested. Especially when Apple itself Doesn't have any C++ solution to UI element programming. HIFramework is only for customized HIView, not standard ones.
|
| last item in an NSOutlineView | 14 Jun 2005 08:56 GMT | 2 |
the first visible item in an NSTableView is always the one at index zero. the last item can also be located easily, by calling the view's data source and getting it to tell you the number of items in the view. alas, with an NSOutlineView, it's not so easy, because the "number of ...
|
| problem handling kEventControlTrack | 14 Jun 2005 07:54 GMT | 3 |
I've got a problem handling kEventControlTrack in HIViews. I install the event handler along with all my others events, but when I handle the event in my callback, it doesn't pick it up. I've simplified things to just cout when the mouse is tracked.
|
| scrolling an NSScrollView programmatically | 12 Jun 2005 10:59 GMT | 3 |
i've got some text in an NSTextView, which is inside an NSScrollView. i'd like the user to be able to press the space bar to advance a page's worth of text. i got as far as overriding [NSTextView keyDown:] to capture the space bar,
|
| file types and XCode | 12 Jun 2005 06:46 GMT | 3 |
Hello again! I have got another question concerning XCode. My normal C++ file types are .h or .cp or .c++ files. But sometimes I am also other suffixes to indicate special files, for example: .s++ defines a file that includes
|
| How to disable Header-Mapfiles in XCode 2.0 | 12 Jun 2005 06:43 GMT | 2 |
I am new to XCode 2.0 and I am impressed how great everything works. The only problem I was not able to solve is, how I can turn off the automatically created header mapfiles. The problem I have is that I use some external code where I do not want
|
| Mac OS X Universal Binary API redux | 12 Jun 2005 06:26 GMT | 14 |
I've put some initial notes up at http://www.sailmaker.co.uk/ubi_notes.html. Comments welcomed. Richard.
|
| Problem Trying to call a Dylib in Xcode 2.0 | 11 Jun 2005 19:30 GMT | 11 |
I have an Xcode created dylib which exports some C functions which I wish to access in a command line application. I know that the dylib is working, as I can access those functions from a RealBasic application; however, I can't seem to get it to work in my command line program. I
|
| XCode project templates | 11 Jun 2005 00:15 GMT | 1 |
I am used to Codewarrior but just checked XCode 2.1. Is there any possibility to define my own project templates? Hartwig
|
| identifier 'restrict' redeclared errro | 10 Jun 2005 18:32 GMT | 6 |
I have migrated one of the project from CW 8.0 to CW 9.3 ITs Project type is MAC OS X PowerPC Mach-O Linker. It was compiling porperrly on CW 8.0 But on CW 9.3 its gives error like: Since the following files comes under MSL_C/MSL_COMMON/Include
|
| Dumb XCode 2.1 question | 10 Jun 2005 15:56 GMT | 4 |
I'm probably just being waaaay too hasty, but I've installed the 2.1 version and done a really, really simple app that does nothing other than open a window. If I tick the Intel box though, it won't compile - it gives a bunch of undefined
|
| write data to file | 10 Jun 2005 04:07 GMT | 4 |
I was wondering if anyone either knows how to or could point me to someplace to learn how to write data to a file. i'm using cocoa and need to know a good way to save numbers (floats) entered in text fileds by the user. I can't figure out how to simple write the float number
|