0
我給門戶網站打開api的新聞列表鏈接地址。我想區分手機網址,pc網頁地址
我想在iPhone上顯示這些鏈接的消息。只有移動地址鏈接。
for(int i=0;i< [newsList count];i++)
{
NewsItem *newsItem = (NewsItem *)[newsList objectAtIndex:i];
const char *linkAddress = [newsItem.mLink UTF8String];
if(~~~) //->here. I want to check a mobile address.
{
[NaverNewslist addObject:newsItem];
}
}
self.mNewsList=NaverNewslist;
self.mSearchKey=searchkey;
}
地址例
- PC網頁
- 移動網頁
所以,我認爲這些地址總結了一個可轉換的信息到手機。
我該怎麼做?