2014-04-01から1ヶ月間の記事一覧

MKMapViewの座標中心にピンを立てる

マップビューから中央の座標を取得し CLLocationCoordinate2D val = self.mapView.centerCoordinate; そこにピンを立てる MKPlacemark *placemark = [[[MKPlacemark alloc] initWithCoordinate:val addressDictionary:nil] autorelease]; [mapView addAnnota…

XCodeのBuild Settingsでの変数

${SRCROOT}便利。

zxing '__CHECKSUM_EXCEPTION_H__' is used as a header guard here 対応

http://stackoverflow.com/questions/22411565/build-error-on-ios-7-1-zxing ここの対処方法でビルド通りました。 ZXingWidget frameworkを選択 ZXingWidget framework内のZXingWidget targetを選択 Build setting タブを選択し"other wa"で検索 -w paramet…

UItableViewの空行の罫線を消す

Footer指定でいけます。 UIView *footer = [[UIView alloc] initWithFrame:CGRectZero]; footer.backgroundColor = [UIColor clearColor]; [self.tableView setTableFooterView:footer]; [footer release];