我是一個初學者在目標c和iphone編程。我正在製作一個通過gprs將文件從iphone傳輸到服務器的程序。我不知道如何從桌面上選擇一個文件加載到模擬器,然後將文件發送到server.please解釋,我如何選擇這樣的文件,我也不知道如何訪問文件的路徑一個mac操作系統。下面的代碼可以在拿起文件iphone從桌面上採摘文件
NSString *urlStr = @"192.168.178.26";
if (![urlStr isEqualToString:@""]) {
NSURL *website = [NSURL URLWithString:urlStr];
if (!website) {
NSLog(@"%@ is not a valid URL");
return;
}
NSHost *host = [NSHost hostWithName:[website host]];
[NSStream getStreamsToHost:host port:3258 inputStream:&iStream outputStream:&oStream];
[iStream retain];
[oStream retain];
[iStream setDelegate:self];
[oStream setDelegate:self];
[iStream scheduleInRunLoop:[NSRunLoop currentRunLoop]
forMode:NSDefaultRunLoopMode];
[oStream scheduleInRunLoop:[NSRunLoop currentRunLoop]
forMode:NSDefaultRunLoopMode];
[iStream open];
[oStream open];