我在X代碼中存在緩存錯誤處理問題。 我評論了一個特定的行,但我仍然得到這條線相同的錯誤。Xcode調試:緩存異常?
我清理了項目,我刪除了構建文件夾,我替換(刪除並再次導入)所有引用。但是,我仍然在沒有任何東西的地方發現錯誤。即使我評論一切,我也會得到同樣的錯誤。
- (void) setTileSource: (id<RMTileSource>)newTileSource
{
if (tileSource == newTileSource)
return;
RMCachedTileSource *newCachedTileSource = [RMCachedTileSource cachedTileSourceWithSource:newTileSource];
newCachedTileSource = [newCachedTileSource retain];
[tileSource release];
tileSource = newCachedTileSource;
--->這裏是SIGABRT異常
// NSAssert(([tileSource minZoom] - minZoom) <= 1.0, @"Graphics & memory are
[projection release];
projection = [[tileSource projection] retain];
[mercatorToTileProjection release];
mercatorToTileProjection = [[tileSource mercatorToTileProjection] retain];
[imagesOnScreen setTileSource:tileSource];
[tileLoader reset];
[tileLoader reload];
}
其被註釋掉日誌的文字,甚至outcommented它顯示在調試區該線路的線路。 –
@Malte O.,那麼,控制檯中的錯誤是什麼? – EmptyStack