if you are asking, you probably have no idea how to develop an iphone app..
its not like a photoshop tutorial , you just copy and get the same results.
if you are asking, you probably have no idea how to develop an iphone app..
its not like a photoshop tutorial , you just copy and get the same results.
Maybe your Hello World app doesn't run because it doesn't have execute permission. chmod +x it via ssh or MobileTerminal, then try.
FYI- TUAW just had a blog entry on developing for the iPhone, and they included a link to a binary toolchain- http://www.tuaw.com/2007/09/11/installing-the-iphone-developer-toolchain-a-simple-how-to/
I'm going to install it and try compiling some software, now that I've got ssh running on the phone.
CC=/usr/local/bin/arm-apple-darwin-gcc
CXX=/usr/local/bin/arm-apple-darwin-g++
CFLAGS=-fsigned-char
CPPFLAGS=-Wall
LDFLAGS=-W1,-syslibroot,/usr/local/share/iphone-filesystem -lobjc -ObjC -framework CoreFoundation -framework Foundation -framework UIKit -framework LayerKit -framework CoreGraphics
LD=$(CC)
all: Hello
Hello: mainapp.o SampleApp.o
$(LD) $(LDFLAGS) -o $@ $^
%.o: %.m
$(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@
clean:
rm -f *.o Hello
I do not know that much about programming yet (taking intro computer science), but i would like to be able to build apps once I get an iphone. From what I know you use objective-c. is there anything else I need to know as far as language goes? any great books people recommend?
Thanks