我再次与 Symbians Descriptors 苦苦挣扎……
char fileName[128] = "somethingsomething";
接下来我有一个具有成员 iName 的 TEntry 对象。我想为这个 iName 分配我的文件名。我试图这样做:
TEntry anEntry;
anEntry.iName.Copy((TText8* )rEntity->fileName);
-
no instance of overloaded function " TBufC::Copy [with S=256]" matches the argument list
argument types are: (TText8 *)
object type is: TBufC<256>
anEntry.iName.Copy((TText8* )rEntity->fileName);
我是否需要使用另一个函数将文件名复制到 entry.iname 中?
非常感谢