생리학 전 선수학습
2011-03-24 10:06:02

1. 전하의 의미를 확실히 안다.

2. 축전기를 확실히 안다.

3. 가우스 정리, 멕스웰 방정식, 쿨롱의 법칙을 정확히 안다.

4. 탄소 화합물, 단백질에 대해 감을 잡는다.

▼ more
여기에 뭔가 해답이?
2011-03-23 17:18:20

NSUInteger row = [indexPath row];

NSString *rowString = [list objectAtIndex:row];

cell.textLabel.text = rowString;

cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;

//image

NSURL *url = [NSURL URLWithString:@"http://www.buttonshut.com/Twitter-Buttons/Twitter-Buttons-70-10-.png"];

UIImage *image =[UIImage imageWithData: [NSData dataWithContentsOfURL:url]];

cell.imageView.image =image;

//screenNameLabel

//CGRect screenNameLabelRect = CGRect*0,5,70

//Tweet Label

//createdat Label

[rowString release];

▼ more
에러의 유형 iPhone
2011-03-23 16:56:27

[[NSString alloc ]initWithFormat:@"%@", 문자열];

이런 식으로 넣으면

1. selector를 모른다는 메세지와 함께 에러가 나는 것이 극히 드물게 있다.

2. 대부분이 아무 에러 없이 꺼진다.

▼ more
아이폰 개발
2011-03-22 22:02:02

1. 로딩창 띄우기

2. 에러 확인.

▼ more