程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-使用變量語法打開URL地址

ios-使用變量語法打開URL地址

編輯:編程綜合問答
使用變量語法打開URL地址

有一個變量agencyWebsite和一個標簽,應該在點擊下面方法的時候打開一個網站。

- (void)website1LblTapped {
    NSURL *url = [NSURL URLWithString:self.agencyWebsite];
    [[UIApplication sharedApplication] openURL:url];
}

在編譯器的警報:

Incompatible pointer types sending UILabel* to parameter of type NSString*

再點擊網站應用就會崩潰。不知道應該怎麼解決?請高手指點一下,謝謝。

下面是設置label點擊的代碼:

UITapGestureRecognizer* website1LblGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(website1LblTapped)];
    // if labelView is not set userInteractionEnabled, you must do so
    [self.agencyWebsite setUserInteractionEnabled:YES];
    [self.agencyWebsite addGestureRecognizer:website1LblGesture];

運行代碼:

NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"http://%@", self.agencyWebsite.text]];

最佳回答:


If 如何agencyWebsite是UILabel*類型,你需要訪問它的text屬性,不應該傳遞對象本身到 URLWithString:

- (void)website1LblTapped {

    NSURL *url = [NSURL URLWithString:self.agencyWebsite.text];
    [[UIApplication sharedApplication] openURL:url];
}

調用 self.agencyWebsite會返回您的UILabel* 對象。同時self.agencyWebsite.text會返回包含標簽text的NSString*對象。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved