平成26年10月9日(木曜日)
Bottom BarがPUSH後、表示されない件について
storyboard 「hide bottom bar push」のチェックを外す。
平成26年10月9日(木曜日)
Bottom BarがPUSH後、表示されない件について
storyboard 「hide bottom bar push」のチェックを外す。
平成26年10月8日(水曜日)
[objc]
//—サーチバーで使用するテーブルの高さ—
//—————————————————————————————-
– (void)searchDisplayController:(UISearchDisplayController *)controller didLoadSearchResultsTableView:(UITableView *)tableView
{
tableView.rowHeight = 80.0f; // or some other height
}
//—————————————————————————————-
[/objc]
平成26年10月7日(火曜日)
iOS8におけるマップ現在位置不具合のため、再ビルド、再バージョンアップ。
Build 2.0 → 2.0.1
平成26年10月7日(火曜日)
Supporting Files
☓☓-Info.plistに以下追加
NSLocationWhenInUseUsageDescription YourAppName would like to use your location.
NSLocationAlwaysUsageDescription YourAppName would like to use your location.
hファイル
//追加 iOS8対応 現在位置表示不具合
@property(nonatomic, retain) CLLocationManager *locationManager;
mファイル
//追加 iOS8対応 現在位置表示不具合
[objc]
//追加 iOS8対応 現在位置表示不具合
locationManager.delegate = self;
self.locationManager = [[CLLocationManager alloc] init];
if(IS_OS_8_OR_LATER) {
[self.locationManager requestWhenInUseAuthorization];
[self.locationManager requestAlwaysAuthorization];
}
[self.locationManager startUpdatingLocation];
//————ここまで————————-
[/objc]