我colorWithPatternImage在iphone創建黑色網格4
UIView *topPart = [[UIView alloc] initWithFrame:CGRectMake(9, 0, 302, 318)];
topPart.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"pattern.png"]];
[someScroller addSubview:topPart];
[topPart release];
,我可以罰款看到的圖案,當我用一個3GS或iPhone模擬器,但是當我在實際的iPhone 4測試,我看到這個模式圖像,但有黑色的線條分隔每個模式,因此它看起來像一個網格。我檢查了圖案圖像,沒有黑色邊框或任何東西。
有一個人用不同的問題,但它可能是相同的解決方案 colorWithPatternImage with iPhone 4 Retina Display ([email protected])
,但他們建議使用 - (空)drawRect:方法,唯一的問題是我不知道該怎麼做。
感謝
的可能重複:http://stackoverflow.com/questions/4886019/2x-images-for-iphone-os-4-0 – Raj