| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 5 months |
| seen | 12 hours ago | |
| stats | profile views | 22 |
I do not exist.
|
Apr 22 |
awarded | Organizer |
|
Apr 22 |
comment |
coregraphics on gnustep ubuntu GNUstep's CoreGraphics implementation is called Opal. |
|
Apr 22 |
revised |
Why does printf concatenate two variables when outputing, but only if the length of the string is not specified? This has nothing to do with GNUstep |
|
Apr 22 |
suggested | suggested edit on Why does printf concatenate two variables when outputing, but only if the length of the string is not specified? |
|
Apr 19 |
comment |
Trouble grasping/understanding Objective-C Along with those suggestions, I'd recommend David Chisnall's Objective-C Phrasebook. And as suggested, you could also try to learn C separately; would make Objective-C less confusing. |
|
Apr 18 |
comment |
New to Objective-C. Getting a “may not respond to ' new' warning. ” Constructor leading to a segfault @Monolo There are other Foundation-like framework like ObjFW's OFObject. You could say it's some sort of Foundation, well, just fyi. |
|
Apr 18 |
comment |
New to Objective-C. Getting a “may not respond to ' new' warning. ” Constructor leading to a segfault I am not sure what runtime you are using. However you shouldn't rely on Object in anyway. For instance, modern GNUstep runtime doesn't implement any Object +-method. Let alone declaring them. |
|
Apr 18 |
comment |
New to Objective-C. Getting a “may not respond to ' new' warning. ” Constructor leading to a segfault Go use NSObject right away and tell whoever they are that your runtime didn't implement +new,+alloc,-init. Don't do a silly thing just because someone told you to do. Just do it right, and tell them why you do it your way. I think that's the point of education. |
|
Apr 13 |
comment |
Error on trying to compile using GNUStep Errors look like gcc.. what is the version of clang and can you verify that you are using it? Does make -n say it use clang? |
|
Apr 12 |
comment |
Compiling Objective-C Application on Linux If your code use Objective-C 2.0 features like ARC, Objective-C literals, block, properties ... you cannot use GCC but you need to install clang and GNUstep Objective-c runtime. If you do not know how to limit yourself to old dialect, it's a very good idea to avoid the article and find another one for clang. |
|
Apr 8 |
comment |
Objective c dictionary enumeration with blocks does not work on gcc with gnustep Goal could keep changing by user's newly learned knowledge. So I think the first step is to make sure he knows what he should. Anyway, it's obvious at least to me that user doesn't want to get a Mac else he'd already get a Mac. So a suggestion to get a Mac+just to learn ObjC doesn't make much sense to me. Suggestion that it's not very useful outside of iOS/Mac development also doesn't make sense to me. |
|
Apr 8 |
comment |
Objective c dictionary enumeration with blocks does not work on gcc with gnustep @Steven Fisher, I think he gave enough information if you actually look at it because the second part already tell us about the compiler and the error isn't of the runtime. |
|
Apr 8 |
comment |
Objective c dictionary enumeration with blocks does not work on gcc with gnustep Or you just use an Ubuntu LiveCD and a thumbdrive. ObjC is useful outside OSX if you actually know how to use it. For instance Apportable uses Cocotron and GNUstep and allow you to port ObjC game from iOS or build your own game on Android OS. There's no subset of the language you cannot use outside Mac. It's subset of the frameworks, not language. |
|
Apr 7 |
comment |
Objective c dictionary enumeration with blocks does not work on gcc with gnustep I have no idea if clang would work well on Windows. Though it certainly works fine on x86 with some other operating systems like FreeBSD and GNU/Linux. What you were doing was using a new syntax that the obsolete compiler GCC doesn't support. I'd install Ubuntu and also check this page wiki.gnustep.org/index.php/ObjC2_FAQ |
|
Apr 7 |
comment |
Objective c dictionary enumeration with blocks does not work on gcc with gnustep You need Clang. Do not use GCC. And make sure you install correct version of runtime and please build the project with GNUstep-make when you have no clue what you are actually doing. |
|
Apr 4 |
comment |
objective c libraries on ubuntu The environment string weren't set properly. GNUstep's first package is called GNUstep-make which contains a file name GNUstep.sh that you must source it before the other things. eg. source /usr/local/share/GNUstep/Makefiles/GNUstep.sh (depends on where you actually install it) It would be a good idea to spend more time reading docs, though I'm okay with quick answers. |
|
Apr 4 |
comment |
objective c libraries on ubuntu You should build it with GNUstep-make package which use GNUmakefile and here's how to write one gnustep.it/nicola/Tutorials/WritingMakefiles/index.html And if you want Objective-C 2.0, arc, literals, all the neat stuffs you should switch to clang. |
|
Mar 30 |
comment |
Error When Using Make That script is a part of GNUstep-make package. |
|
Mar 28 |
comment |
How to check Objective-C 2.0 ARC in gnustep linux No segfault here, a back trace could help. My libobjc2 is trunk@36228 and clang version 3.3 (trunk 176643) |
|
Mar 26 |
comment |
How to allocate a new object without Foundation? Also make sure you have taken care of tag pointer and small objects for your custom allocation. It's better to use what your runtime gives you. It isn't necessary that objects must expose or have an isa. |