月別アーカイブ: 2014年10月

Bottom Bar

平成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]

iOS8 におけるMapKit現在位置不具合

平成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]