我想将 转换NSString* str
为char* ch
,以便在此函数中将其用作参数:
str
从UITextField's
文本中获取。
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 *')