気象庁XML利活用セミナー平成26年10月31日(金曜日)
気象庁防災情報XMLフォーマット形式電文の公開(試行)について
月別アーカイブ: 2014年10月
Auto Layout(iOS 7対応) その1
iTunesConnect
navigationBar
self.navController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName : [UIColor whiteColor]};
ナビ機能
MKDirectionsRequestHP内リンク
PROJECT (MKDirectionsSample-master)
URL SCHEME>HP内リンク
XCODE6 PROJECT (url_scheme)
URL Schemes の設定について ios iPhone xcode
TARGETS → Info → URL Types
URL Schemes設定LINK
SizeClasses
平成26年10月22日(水曜日)
Version 6.1 UP
却下
Nov 5, 2014 01:10 PM
Reasons
3.12: Apps should have all included URLs fully functional when you submit it for review, such as support and privacy policy URLs
—– 3.12 —–
We found that your app includes URLs which do not properly navigate to the intended destination, which is not in compliance with the App Store Review Guidelines.
-Support URL is not functioning.
It would be appropriate to ensure all URLs properly resolve to the appropriate destinations before resubmitting your binary.
If your iTunes Connect Application State is Rejected, a new binary will be required. Make the desired metadata changes when you upload the new binary.
If your iTunes Connect Application State is Metadata Rejected, we do NOT require a new binary.
To revise the metadata:
– Log in to iTunes Connect
– Click on “My Apps”
– Select your app
– Revise the desired metadata values
– Click “Save”
– Once you’ve completed all changes, click the “Submit for Review” button at the top of the App Details page
NOTE: Please be sure to make any metadata changes to all App Localizations by selecting each specific localization and making appropriate changes.
————————————————
Submission Feedback. 平成26年10月21日 9:09
webview関係を取り除き、再提出。
Waiting For Review. 平成26年10月21日 10:14
In Review. 平成26年10月23日 4:19
本バージョンは App レビュー審査で却下されました。問題解決センター を参照してください。
mail
has been reviewed, but we are unable to post this version. For details, or to directly contact the App Review team, visit the Resolution Center in iTunes Connect. Do not reply to this email.
Regards,
App Review
Reasons
3.12: Apps should have all included URLs fully functional when you submit it for review, such as support and privacy policy URLs
—– 3.12 —–
We found that your app includes URLs which do not properly navigate to the intended destination, which is not in compliance with the App Store Review Guidelines.
-Support URL does not work.
It would be appropriate to ensure all URLs properly resolve to the appropriate destinations before resubmitting your binary.
If your iTunes Connect Application State is Rejected, a new binary will be required. Make the desired metadata changes when you upload the new binary.
If your iTunes Connect Application State is Metadata Rejected, we do NOT require a new binary.
To revise the metadata:
– Log in to iTunes Connect
– Click on “My Apps”
– Select your app
– Revise the desired metadata values
– Click “Save”
– Once you’ve completed all changes, click the “Submit for Review” button at the top of the App Details page
NOTE: Please be sure to make any metadata changes to all App Localizations by selecting each specific localization and making appropriate changes.
URLスキーム
Apple URL Scheme Reference
Google Maps URL Scheme
NAVIelite
URLスキームを用いて、NAVIeliteに目的地をセット(一般道路版)
[objc]
//動作確認 ok!! NAVIelite
//NSString *url_str = [NSString stringWithFormat:@"navielite://open?latitude=%@&longitude=%@&title=%@",@"34.923273",@"137.21810",@"dest"];
// ①オープン open 版
//NSString *url_str = [NSString stringWithFormat:@"navielite://open?latitude=%@&longitude=%@&title=%@",lat_srt,lon_str,dest_name];
// ②ルートセット routeset 版
// 動作確認 テスト版 ok!!
//NSString *url_str = [NSString stringWithFormat:@"navielite://routeset?poi1=%@,%@&poi1kind=%@&poi1title=%@&poi1rflg=%@&poi1sflg=%@",@"34.923273",@"137.21810",@"dest",@"dest",@"dest",@"0"];
// 動作確認 テスト版 ok!!
NSString *url_str = [NSString stringWithFormat:@"navielite://routeset?poi1=%@,%@&poi1kind=%@&poi1title=%@&poi1rflg=%@&poi1sflg=%@",lat_srt,lon_str,@"dest",dest_name,@"dest",@"2"];
NSURL *directionsURL = [NSURL URLWithString:[url_str stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
[[UIApplication sharedApplication] openURL:directionsURL];
[/objc]
stack over flow (iOS Apple Map native links – URL Scheme examples)
URL Scheme でアプリ起動 – [開発] – Google Maps SDK for iOS
Drawing a route in mapkit in iphone sdk
平成26年10月20日(月曜日)
iOS 6
stackoverflow mapkit
iOS7 Day-by-Day :: Day 13 :: Route Directions with MapKit
iOS 7から追加されたMKDirectionsで経路検索を試してみる
apple document 検索keyword MKDirectionsRequest
SearchBAR
平成26年10月13日
——————————–
hファイル
@property Boolean IsSearchTable;
——————————–
mファイル
if (IsSearchTable==YES) {
//on_off.enabled = NO;
on_off.hidden = YES;
}
——————————–
//—————————————————————————-
-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
if ([[segue identifier] isEqualToString:@”showDetail”]) {
if(sender == self.searchDisplayController.searchResultsTableView) {
// サーチビュー
//[[segue destinationViewController] setIsSearchTable:YES];
}
else {
// ノーマルビュー
//[[segue destinationViewController] setIsSearchTable:NO];
}
}
}
//=============================================================================