개발 & 계발
-
서버랑 POST 등의 방식으로 데이터 주고 받기개발 & 계발/맥 개발 2012. 3. 13. 00:57
NSString *smsURL = @"http://121.124.124.105:8080/FRMiddle/servlet/RequestReceiverServlet"; NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init]; NSString* boundary = [@"--0xgreenit123123123123123" stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; NSString* contentType = [NSString stringWithFormat:@"multipart/form-data, boundary=%@", boundary]; NSString* command = [NSS..
-
C언어와 Objective-C의 Mixing 하여 사용한 상태개발 & 계발/맥 개발 2011. 8. 2. 15:46
//// main.m// Shape-OOP//// Created by ktds on 11. 8. 2..// Copyright 2011 ktds. All rights reserved.// #import typedef enum{ kRedColor, kGreenColor, kBlueColor} ShapeColor; typedef struct{ int x; int y; int width; int height;} ShapeRect; NSString *colorName(ShapeColor color);void drawShapes(id *shapes, int count); @interface Circle : NSObject { ShapeColor fillColor; ShapeRect bounds;} -(void) s..