본문 바로가기

[아이폰] tableview row 파란색 없애기 cell.selectionStyle = UITableViewCellSelectionStyleNone; cell 을 정의하고 있는 클레스에 위와 같은 명령을 함께 넣어주길 바란다. 더보기
[아이폰-펌] 문자열 합치기 하루를 꼬박 헤딩을 해 가면서 결국 해결한 문제네요. 일단 기본적인 문법을 잘 이해를 못해서 생기는 문제였는데 요약 하면 다음과 같습니다. 플래시 액션스크립트 같은 경우 보통 문자열은 따옴표 안에 들어가게 됩니다. str1 = "안녕하세요." str2 = "좋은 아침입니다." str3 = str1 + str2 그리고 문자열을 합치기 위해서 단순 연산자를 사용 합니다. str3 의 값은 "안녕하세요. 좋은 아침입니다." 라는 결과를 가지게 되죠. 그런데 Objective-C 는 좀 복잡한 절차를 밟아야 합니다. 1. 타입 선언 (NSString) 2. 포인트 지정 (*변수명) 3. 문자열 선언 (@"문자열") 4. 문자열 합치기 명령어 (stringWithFormat) 코드로 보자면 다음과 같습니다. NS.. 더보기
[안드로이드] notification http://rosaria1113.blog.me/112533451 MainActivity.java package com.rosa.test.notification; import android.app.Activity; import android.app.Notification; import android.app.NotificationManager; import android.app.PendingIntent; import android.content.Intent; import android.os.Bundle; public class MainActivity extends Activity { /** Called when the activity is first created. */ @Override public vo.. 더보기