0
votes
0answers
29 views
Open File Dialog Box
Hello,
I'm learning Objective-C and trying to develop a simple zipper application, but I stopped when now, when I need to insert a button at my dialog and this button opens a Open …
1
vote
2answers
49 views
Zipping Things Using Objective-C
Hello,
I'm learning Objective-C using GNUstep(because I use Linux). I was thinking in create a simple zipper application only to practice, but how where i can find a tutorial to b …
0
votes
2answers
40 views
Character Input In Objective-C
Hello,
I'm learning Objective-C using GNUstep, but i searched at Google for some example of character input using Objective-C, like scanf in C and cin at C++, but i didn't found, …
0
votes
2answers
59 views
Error With Foundation.h
Hello,
I learning Objective-C in Linux(Ubuntu), but when i tryed to compile my application that needs the Foundation headers i got an error saying that the file cannot be found, b …
0
votes
2answers
42 views
Error When Using Make
Hello,
I'm learning Objective-C using GNUStep in my Windows(Cygwin) and i have two files, one source and one make file:
include $(GNUSTEP_MAKEFILES)/common.make
APP_NAME = Hello …
4
votes
12answers
410 views
Best compiled language for OS/X and Linux compatibility
We need to write some software that will compile and run on both an os/x server and ubuntu. We would love to use objective-c with all of its cocoa goodness, however the GNUstep imp …
8
votes
6answers
619 views
Is Objective-C only used for development on Mac OS/iPhone?
The title says it all. I don't know Objective-C but to me it appears a nice language. But the only context I know it from is everything Apple. But Objective-C is even in the gnu co …
2
votes
1answer
43 views
GNUStep NSAutoreleasePool incompatibility
According to another Stack Overflow post the drain message is an Apple-only call:
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSLog (@"Hello");
[pool drain];
retur …
0
votes
2answers
114 views
How do I compile a GNUstep application that uses NSApplication on Windows?
I am exploring with compiling an application with GNUstep on Windows. This is my main.m file:
#import <???/???.h>
int main(int argc, const char *argv[])
{
NSAutoreleas …
0
votes
1answer
113 views
Can’t build OCUnit in GNUstep/Win32 environment - objc/runtime.h not found
I'm trying to unit test objective-c classes built in the MinGW shell. Since OCUnit has been embraced by Apple for XCode, it seems that the developer, Sen:te, has now focused on th …
0
votes
1answer
33 views
Gorm main window does not accept drag-and-drop.
When I try to add any widget (label, button ...) to main application Window in Gorm, the Window does not accept the widget. I try to drag and drop but nothing wants to 'stick'. Whe …
0
votes
1answer
126 views
GNUStep Getting Started
I downloaded GNUStep and installed it, however i am not sure where i can find an IDE. does anyone know what programs serve as a GNUStep IDE/where to get them? Failing that, does an …
1
vote
2answers
133 views
Objective-C on GNUstep AutoReleasePool undeclared problem
I'm new to Objective-C and working in GNUstep and MinGW environment. I am compiling this code but having an error:
#import "Foundation/Foundation.h"
@interface C : NSObject
{
…
3
votes
3answers
223 views
Will GNUstep support @property and @synthesize?
I'm working on a Cocoa app with the intention of using it on Windows and Linux using GNUstep. I've been avoiding Objective-C 2.0 features thus far, but I'd really love to start usi …
1
vote
3answers
115 views
‘NSAutoreleasePool’ may not respond to ‘-drain’ on Ubuntu
I'm trying to compile the following Objective-C program on Ubuntu Hardy, but for some reasons, I'm getting warnings.
#import <Foundation/Foundation.h>
int main (int argc, ch …
