iPhone のブラウザ タグとは何ですか?また、iPhone に最適化された Web サイトは通常のモバイル Web サイトとどう違うのでしょうか?
ありがとう!
iPhone のブラウザ タグとは何ですか?また、iPhone に最適化された Web サイトは通常のモバイル Web サイトとどう違うのでしょうか?
ありがとう!
Apple には、iPhone の Web ページ開発に関する優れたガイドラインがいくつかあります。
それを簡単に読んだところ、注意すべき重要な要素は次のとおりです。
Appleはここでユーザーエージェントを定義しています。
このフィールドは、キー「User-Agent」の下のHTTPヘッダーで送信されます
Nettuts には、iPhone 用の Web 開発の優れた入門書があります。あなたはここでそれを見つける
これは、あなたが求めた特定のコードです (その記事から取得):
<!--#if expr="(${HTTP_USER_AGENT} = /iPhone/)"-->
<!--
place iPhone code in here
-->
<!--#else -->
<!--
place standard code to be used by non iphone browser.
-->
<!--#endif -->
より良い解決策:
*
(NSString *)flattenHTML:(NSString *)html {
NSScanner *theScanner; NSString *text = nil;
theScanner = [NSScanner scannerWithString:html];
while ([theScanner isAtEnd] == NO) {
// find start of tag
[theScanner scanUpToString:@"<" intoString:NULL] ;
// find end of tag
[theScanner scanUpToString:@">" intoString:&text] ;
// replace the found tag with a space
//(you can filter multi-spaces out later if you wish)
html = [html stringByReplacingOccurrencesOfString:
[ NSString stringWithFormat:@"%@>", text]
withString:@" "];
} // while //
return html;
}