从char数组中检索char

时间:2010-09-21 16:32:27

标签: objective-c

有没有人知道如何从char数组中检索char值:

char* alphaChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";

for (int rowIndex = 0; rowIndex < 12; rowIndex++) 
{
    char* text = (char*)alphaChars[0]; //this throws an error

    //CGContextShowTextAtPoint(context, 10, 15, text, strlen(text)); //This is where I wanna use it
}

1 个答案:

答案 0 :(得分:2)

如果您只想要一个字符,则不希望将其指定给指针:

char text = alphaChars[0];

然后你会打电话给你的下一个功能:

CGContextShowTextAtPoint(context, 10, 15, &text, 1);

如果你想要整个字符串,这就像你的代码所做的那样,你根本不需要一个中间变量。