StretchableImage的原型如下:
public virtual UIImage StretchableImage (int leftCapWidth, int topCapHeight) { UIImage result; using (new NSAutoreleasePool ()) { if (this.IsDirectBinding) { result = (UIImage)Runtime.GetNSObject (Messaging.IntPtr_objc_msgSend_int_int (base.Handle, Selector.GetHandle ("stretchableImageWithLeftCapWidth:topCapHeight:"), leftCapWidth, topCapHeight)); } else { result = (UIImage)Runtime.GetNSObject (Messaging.IntPtr_objc_msgSendSuper_int_int (base.SuperHandle, Selector.GetHandle ("stretchableImageWithLeftCapWidth:topCapHeight:"), leftCapWidth, topCapHeight)); } } return result; }
它是將目標圖片進行橫向和縱向的延展,類似css中的平鋪(repeat-x,repeat-y),但是注意了,它需要2個參數一起作用,並且他們劃分出來是一個區塊對象,2個參數值右側和下側的近鄰的區塊對象。 如果參數指定10,5。那麼,圖片左邊10個像素,上邊5個像素。不會被拉伸,x坐標為11和一個像素會被橫向復制,y坐標為6的一個像素會被縱向復制。注意:只是對一個像素進行復制到一定寬度。