개발 & 계발/맥 개발
-
MySQL 데이터를 SQLite로 옮기는 방법개발 & 계발/맥 개발 2013. 1. 7. 10:38
해당 소스를 실행하면 됩니다.#!/bin/sh # Converts a mysqldump file into a Sqlite 3 compatible file. It also extracts the MySQL `KEY xxxxx` from the# CREATE block and create them in separate commands _after_ all the INSERTs. # Awk is choosen because it's fast and portable. You can use gawk, original awk or even the lightning fast mawk.# The mysqldump file is traversed only once. # Usage: $ ./mysql2sqlite mysq..
-
iOS 문자열 메소드개발 & 계발/맥 개발 2012. 3. 14. 10:24
http://www.applclub.com/bbs/board.php?bo_table=F&wr_id=115
-
-
서버랑 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..