
안녕하세요.요즘 업무때문에 언어를 여러가지 섞어서 보고 있는데한 함수 때문에 경고가 떠서 경고가 200개가 넘게 뜨더라고요;;(인수인계자님?) 에러는 아니지만 너무 신경쓰여서 고쳐볼까합니다. 에러 내용sprintf is deprecated 원인- C 언어쪽에서 사용하는 명령어 같은데 이게 이제 없어졌다고 합니다. 해결법- snprintf로 바꿔주시면 됩니다. - 예를들면 아래 같이 사용하셨다면 sprintf(a,"%s is good",b);- 간단한 경우에는 이렇게 두가지로 바꿀 수 있습니다.snprintf(a,sizeof(a),"%s is good",b);혹은 snprintf(a,strlen(a),"%s is good",b); * 근데 이렇게 바꾸실때 만약 a 의 크기가 너무 작으면 데이터 오버플..

뭔가 예전에 Objective C를 공부하고 싶어서 만들었는데 가끔씩 코드 보고싶을때마다 GitHub 매번 로그인해서 찾아가기 귀찮아서.... 링크만 올립니다. (코드가 올리기엔 너무 많아요) 참고로 진짜 그림판 그 이상도 이하도 아닙니다. -> 근데 단점이 있는 코드라;;; https://github.com/larooly/KoKo_iOS GitHub - larooly/KoKo_iOS: KoKo iOS version KoKo iOS version. Contribute to larooly/KoKo_iOS development by creating an account on GitHub. github.com 이상하게 만든 앱들중 가장 잘 써먹는 앱입니다.

* 해당글은 GitHub 에 올린 것을 옮긴것이기 때문에 별도의 설명이 없습니다. * 전체를 보고 싶으신 분들은 아래 링크를 참고해주시길 바랍니다. https://github.com/larooly/StopWatch_iOS GitHub - larooly/StopWatch_iOS: iOS simple Stopwatch iOS simple Stopwatch. Contribute to larooly/StopWatch_iOS development by creating an account on GitHub. github.com ViewController.h #import @interface ViewController : UIViewController { NSTimer *timer; BOOL runnig; int c..