0
我想問用戶使用NSFileManager的delegatefileManager覆蓋模態表中的文件:shouldMoveItemAtPath:toPath:要求用戶使用NSFileManager的delegatefileManager覆蓋模態表中的文件:shouldMoveItemAtPath:toPath:
是否有阻止代理執行,顯示模式表並獲取代理返回值的做法?
- (BOOL)fileManager:(NSFileManager *)fileManager shouldMoveItemAtPath:(NSString *)srcPath toPath:(NSString *)dstPath {
// Ask the user - get a return value from modal sheet here - returnCode ?
return returnCode ? YES : NO; // ??
}
感謝