我正在開發一個iOS應用程序,我想像這個圖像樣式UILabel
。 image http://img4.hostingpics.net/thumbs/mini_388558Capturedcran20120629142330.png特殊的UIlabel設計
可以做到這一點嗎?
我正在開發一個iOS應用程序,我想像這個圖像樣式UILabel
。 image http://img4.hostingpics.net/thumbs/mini_388558Capturedcran20120629142330.png特殊的UIlabel設計
可以做到這一點嗎?
一個解決辦法是添加一個UILabel作爲包裝的UIView的子視圖
// Using ARC
// Set Wrapper
CGRect wrapperFrame = CGRectMake(0, 0, 320, 80);
UIView *specialLabel = [[UIView alloc] initWithFrame:wrapperFrame];
[specialLabel setBackgroundColor:[UIColor blackColor]];
// Set Content
CGFloat padding = 10;
CGRect contentFrame = CGRectInset(wrapperFrame, padding, padding);
UILabel *contentLabel = [[UILabel alloc] initWithFrame:contentFrame];
[contentLabel setBackgroundColor:[UIColor greenColor]];
// Append content to wrapper
[specialLabel addSubview:contentLabel];
良好的形象...:d – Peres
是不可見的? – samir
現在,我的親愛的先生。 – Peres