この関数のパラメーターとして使用するために、 を に変換したい:
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 *')