4
A
回答
1
實現的UIButton是這樣的:它使用XIB文件,還可以添加在這個類作爲一個子視圖
@interface MyNewButton : UIButton{
UILabel* nickNameLabel;
UIImageView* myImageView;
}
@property (nonatomic, retain) UIImageView *myImageView;
@property (nonatomic, retain) UILabel* nickNameLabel;
@end
@implementation MyNewButton
@synthesize myImageView;
@synthesize nickNameLabel;
- (id)initWithFrame:(CGRect)frame
{
myImageView=[[AXSImageView alloc] initWithFrame:CGRectMake(10, 3, 40, 40)];
[self addSubview:myImageView];
nickNameLabel=[[UILabel alloc] initWithFrame:CGRectMake(myImageView.frame.origin.x + myImageView.frame.size.width + 6, 15, 80, 17)];
[self addSubview:nickNameLabel];
}
- (void)drawRect:(CGRect)rect
{
//DO What You Need
}
- (void)dealloc
{
[nickNameLabel release],nickNameLabel=nil;
[myImageView release],myImageView=nil;
[super dealloc];
}
@end
UIView的,你知道什麼是平均:)
相關問題
- 1. EXC_BAD_ACCESS自定義UIView與自定義XIB
- 2. 自定義UIButton與圖像
- 3. UITableViewCell與自定義UIButton
- 4. 自定義UIButton
- 5. IOS自定義UIButton
- 6. 自定義UIButton iphone
- 7. 自定義UITextField/UIButton
- 8. UIButton自定義類
- 9. 自定義UITableViewCell UIButton
- 10. 與本地通知的自定義UIButton
- 11. 自定義XIB轉換?
- 12. TouchDown上的自定義UIButton
- 13. UIButton的自定義繪製
- 14. 自定義的UIButton後
- 15. iPhone UIButton自定義動畫
- 16. 自定義UIButton圖像iOS
- 17. UIButton的自定義屬性
- 18. 不能自定義的UIButton
- 19. 繼承自定義的UIButton
- 20. Iphone的自定義UIButton
- 21. UIscrollview中的自定義UIButton
- 22. 自定義UIButton圓角
- 23. 自定義UIButton的影子
- 24. UIButton自定義亮點
- 25. 自定義UIButton很難按
- 26. UITableView與自定義單元格(與.xib)崩潰
- 27. 如何在代碼中創建自定義UIButton並在xib中使用它?
- 28. xib文件和自定義構造函數的自定義UITableViewCell
- 29. 在XIB文件中定義的UIButton未實例化
- 30. 從Xib顯示自定義視圖
http://stackoverflow.com/questions/8014497/interface-builder-tutorial-on-how-to-customize-uibuttons-in-xcode-4-2 – Bala