程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-轉換UITextField ( field.text) NSString *

ios-轉換UITextField ( field.text) NSString *

編輯:編程綜合問答
轉換UITextField ( field.text) NSString *

需要轉換NSString* strchar* ch,這樣做是為了將其當做函數的參數使用,str是在UITextField獲取的。

void CUserSession::Login (char *pUsername, char *pPassword)

首先使用ch = [str UTF8String];之後,

得到錯誤:

Cannot initialize a parameter of type 'char *' with an rvalue of type 'const char *'

後來改為這樣ch = (const uint8_t *)[str UTF8String];

得到錯誤:

Cannot initialize a parameter of type 'char *' with an rvalue of type 'const uint8_t *' (aka 'const unsigned char *')

最佳回答:


這個問題的原因是[str UTF8String]返回的是 const char * 的結果,
而Login函數接收的參數是char*類型的。
強制轉化一下,將[str UTF8String]前面加上(char *)

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