Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のような写真を撮りたいです。
そして、私はコードを書きました:
[[[UIImage imageNamed:@"background.png"] resizableImageWithCapInsets:UIEdgeInsetsMake(1.f, 1.f, 1.f, 1.f)] drawInRect:rect];
しかし、このコードで私はそれを取った:
どうして???すべての辺に1pxを固定して、サイズ変更された画像を四角形に描画するにはどうすればよいですか?
次のコードを使用して、iOS 6+で画像を引き伸ばします。
[[[UIImage imageNamed:@"background.png"] resizableImageWithCapInsets:UIEdgeInsetsMake(1.f, 1.f, 1.f, 1.f) resizingMode:UIImageResizingModeStretch]drawInRect:rect];