Tagged Questions
The gnustep tag has no wiki summary.
14
votes
7answers
3k 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 compiler collection.
...
8
votes
3answers
2k 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 using at least ...
7
votes
3answers
581 views
Is it possible to port an iOS app to Windows using GNUstep? (for learning purposes)
I am an Objective-C newbie, who still does not have a Mac, but still I want to practice the language. I heard that in the non-Mac world, GNUstep offers a good alternative to Cocoa, and can be used as ...
7
votes
8answers
14k views
Unable to find standard libraries when compiling Objective-C using GNUstep on Windows
I just installed GNUstep on my Windows XP machine and I'm attempting to compile the following Objective-C Hello World program from the command line:
#import <Foundation/Foundation.h>
int ...
6
votes
12answers
988 views
Best compiled language for Mac OS X and Linux compatibility
We need to write some software that will compile and run on both an Mac OS X server and Ubuntu. We would love to use Objective-C with all of its Cocoa goodness, however the GNUstep implementations of ...
4
votes
1answer
36 views
GNUstep/Objective-c and nib files
I don't think I fully understand how the objects and their source file interact with Gorm. When you subclass a class like NSObject, it seems to store a snapshot of that object according to how you ...
4
votes
2answers
627 views
How does one use Obj-C 2.0 with GNUstep?
I'm aware of the existence of libobjc2, and I gather that I'll need to use clang rather than GCC, but I can't find any basic instructions of what's different about the compilation process.
Can anyone ...
4
votes
3answers
761 views
Is Objective-C used without Cocoa?
It seems that Cocoa seems to be the main platform for Objective-C. GCC (which Xcode uses) supports Objective-C so it must be available on a wide range of platforms.
Are there any notable ...
4
votes
1answer
191 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];
return 0;
Is it safe to ...
4
votes
2answers
1k 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 anyone know of a ...
3
votes
2answers
164 views
Is it considered bad practice to write Windows applications using GNUStep?
I want to start developing for Windows but I want to preserve some of my frameworks that I've used with NSFoundation. I want to build them on Windows using GNUStep and maybe write the whole ...
3
votes
2answers
256 views
Newbie - cant compile objective c with GNUStep
I have a question relating to this question Unable to Compile Objective C using Gnustep on windows
I am trying to compile my first objective c app on Windows.
The file is hello.m (all files below ...
2
votes
3answers
171 views
How to run Objective-C binary on a web server?
Alright, I have a rather odd question here. I feel much more comfortable writing code in Objective-C over any other language. I recently had to do some server-side programming, which required me to ...
2
votes
2answers
1k views
Cant find Foundation/NSObject.h in Linux while build Obj-c Program
I was just starting to study obj-c on Ubuntu Linux today, the tutorial that I followed is http://www.otierney.net/objective-c.html, when I typed in the code that requires for Foundation/NSObject.h, ...
2
votes
1answer
468 views
Threading and Sockets in Objective-C
NOTE: I've edited my question. I've got it to connect and perform the first callback, but subsequent callbacks don't go through at all.
This is my first time writing Objective-C (with GNUstep; it's ...
2
votes
1answer
253 views
Makefile Question. [Ubunt, GNUstep, ObjC,]
I just made a makefile follow with online tutorials.
http://www.gnustep.org/resources/documentation/Developer/Base/ProgrammingManual/manual_1.html
include $(GNUSTEP_MAKEFILES)/common.make
TOOL_NAME ...
2
votes
3answers
503 views
Does Objective-C have a Standard Library?
Most somewhat modern programming languages have a standard library? It is my impression is that there isn't a decent sized standard library for Obj-C , rather that it relies mostly/all on Cocoa and ...
2
votes
3answers
1k views
Automating GNUStep from Notepad++
I use GNUStep to compile Objective-C on Windows 7 using GCC and MinGW. I'd like to be able to automate the "make" instruction (with make files) from Notepad++ and have any complier errors reported to ...
2
votes
2answers
208 views
key-value coding and to-many relationships
I'm a bit confused with key value coding and to-many relationships. I've read that when having such relationship I should use [object mutableArrayValueForKey:@"key"]; to retrieve
the mutable array ...
2
votes
3answers
1k 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
{
float f;
}
- ...
2
votes
1answer
695 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 that. So, the last ...
2
votes
1answer
288 views
How to debug a GNUstep application?
I'm just starting to learn Objective-C using GNUstep on Windows and I'm wondering what type of debugging options are available? I'm using make to compile and link the code, but once I run the app ...
1
vote
1answer
13 views
GNUstep main file implementation
I'm not sure of the exact purpose of creating a main file that looks like this
#include "AppController.h"
#include <AppKit/AppKit.h>
int main(int argc, const char *argv[])
{
...
1
vote
0answers
12 views
GNUStep and Class Methods
In the documentation for GNUstep objective c, it states that "it is not allowed to override an inherited class method." It then goes on to say that you can override the version such as [NSString ...
1
vote
2answers
37 views
How can i use Objective-C's Property feature in GNUstep?
I'm trying to use Objective-C 2.0 feature Property in GNUstep(using Windows).
But i can't use @property sign and @synthesize.
Although All of my codes are correct,compiler can't compile my property ...
1
vote
0answers
32 views
Simple http request in gnustep's objective c not working
#import <Foundation/Foundation.h>
main() {
NSURL *url = [NSURL URLWithString:@"http://www.google.com/"];
NSURLRequest *request = [[NSURLRequest alloc] initWithURL:url ...
1
vote
1answer
67 views
NSPortTimeoutException while using Distributed Object
I am using distributed object for inter process communication. I am running one server and four instance of client but i am getting NSPortTimeoutException. I want to store client object @server for ...
1
vote
1answer
78 views
JSON Parser for GNUstep runtime (Objective-c 1.0?)
IS there a JSON Parser Library for GNUstep runtime (Objective-c 1.0)?
Thanks.
1
vote
3answers
327 views
Linux Clang and Objective-C base library
I have been experimenting with Objective-C using GCC + GNUstep on an Ubuntu system.
Now regarding the LLVM Clang compiler, what kind of *step library does it offer? Does it use the GNUstep on the ...
1
vote
2answers
152 views
Feasible to switch to objective-c on these platforms and situation?
I've written most of a game engine using C++ that runs on OSX and iOS (Xcode 3.5 so, GCC), Linux (GCC), and Windows (Vis Studio 2010). It uses stl vector for collections of objects. It implements ...
1
vote
1answer
426 views
NSLog error: Can't find 'NXConstantString'?
I finally got GNUstep working (on windows), and it compiles and runs fine. However, whenever I try to use NSLog, I get the following error:
$ gcc -o hello hello.m -I /GNUstep/System/Library/Headers \
...
1
vote
2answers
1k views
compiling Objective-C on Ubuntu using GCC
ok i have this program here:
int main(int argc, const char * argv[])
{
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
NSLog (@"Hello world!");
[pool drain];
return 0;
}
the ...
1
vote
1answer
336 views
Shouldn't NSMutableArray retain added objects?
Hi I am facing an issue with Linux / GNUstep. My NSMutableArray(s) do not seem to retain any added objects to them. Shouldn't they? Example:
NSString * str = @"test";
NSMutableArray * arr = ...
1
vote
1answer
902 views
Can't compile objective c app using GNUStep
I've downloaded gnustep core \ gnustep system (for Windows) and come example apps. When i run the gnustep shell from start>all program> GNUstep> shell, navigate to the folder containing en example ...
1
vote
1answer
1k views
How to compile an objective c program under windows with independant MingW
I know how to compile the objective c program using gnustep version of mingw.
But I don't like their shell and I want to use the standard mingw gcc compiler.
I put this gcc bin directory in ...
1
vote
4answers
2k views
Build an Xcode project on a Linux machine
Without writing a GNUmakefile by hand, do any tools exist that understand Xcode projects and can build them directly against GNUstep, producing a Linux executable, thus simplifying (slightly) the work ...
1
vote
1answer
369 views
GNUStep make with a precompiled (and prefixed) .pch header from Xcode project?
I'm trying to build an Xcode project with GNUStep-make. Right now the project is very small (3 classes) however it will grow to hundreds of classes over the coming weeks so I'm trying to get ...
1
vote
1answer
710 views
Core-data: when accessing a relationship, the count method on NSSet fails
I'm trying to access a relationship (one to many) programatically.
My Data model contains an NSManagedEntity called language (with a two string attributes)
with a relationship to an entity called ...
1
vote
1answer
457 views
Referencing DLLs for Objective-C (GNUStep on Windows)
How do you reference DLLs from Objective-C? I use GNUStep Make files on Windows.
RIch
1
vote
1answer
215 views
NSURLDownload not starting
I am attempting to download a URL using NSURLDownload, but it does not start downloading. Before continuing it must be said that I am using GNUStep for this.
The outline of my project is as follows:
...
1
vote
1answer
178 views
data reloading in NSOutlineView
simple existentialist question that google can't answer me:
When and NSOutlineView send the message outlineView:setObjectValue:forTableColumn:byItem: to its data source, will it always reload its ...
1
vote
2answers
746 views
linking objective c++
I am trying to figure out why when I convert my main.m file to a main.mm file, it no longer will link properly.
I have reduces the problem to the following example code:
#import ...
1
vote
2answers
344 views
Zipping Things Using Objective-C
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 build it? and which is the ...
1
vote
3answers
2k 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[])
{
NSAutoreleasePool *pool = ...
1
vote
3answers
417 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, char *argv[])
{
...
1
vote
3answers
133 views
unable to make the make file
Hi Sir first of all i would like to thank you for answering me .
still i am stuck up with an error
when i type
include $(GNUSTEP_MAKEFILES)/common.make
in the MINGW32 shell i am getting the error ...
1
vote
4answers
3k views
Unable to Compile Objective C using Gnustep on windows
Hi i am a beginner learning objective c.
i am finding an error "hello.m:1:34: Foundation/Foundation.h: No such file or directory"
i came to know that i need to make a make file
may i know how to ...
0
votes
1answer
12 views
GNUstep make dist
Is there anyway to configure the name of the archive that is created with make dist ahead of time? I have to recreate the file a lot. Also how do you control the version of the archive as well.
...
0
votes
3answers
26 views
Prevent scientific notation with NSDecimalNumber output as NSString
I have a problem similar to the one in this question: How to obtain an unformatted string representation of an NSDecimal or NSDecimalNumber? I need to have a number in string format accurately ...
0
votes
1answer
15 views
Compiling App Wrappers with GNUStep
I am following the directions verbatim as on the GNUStep website. Here's my make file.
include $(GNUSTEP_MAKEFILES)/common.make
APP_NAME = FirstApp
FirstApp_OBJC_FILES = main.m \
MyController.m
...