切换方向会导致 UIButton 重绘

发布于 2024-11-27 08:43:38 字数 636 浏览 0 评论 0原文

http://i56.tinypic.com/33f6mmf.png

我正在切换到横向,它会重新绘制 UIButton。这是按钮代码。

plusButton = [[[UIButton alloc] initWithFrame:CGRectMake(bounds.size.width - 60.0f,       28.0f, 45.0f,90.0f)] autorelease ];
[plusButton setImage:TTIMAGE(@"bundle://morebutton.png")
            forState:UIControlStateNormal];
[plusButton showsTouchWhenHighlighted];
[plusButton addTarget:self action:@selector(plusButtonDidPress:)
 forControlEvents:UIControlEventTouchUpInside];
[self addSubview:plusButton];

这是一个 TTMessageitemcell (THREE20)

如有任何建议,我们将不胜感激。谢谢。

http://i56.tinypic.com/33f6mmf.png

I'm switching to landscape and it redraws the UIButton. here is the button code.

plusButton = [[[UIButton alloc] initWithFrame:CGRectMake(bounds.size.width - 60.0f,       28.0f, 45.0f,90.0f)] autorelease ];
[plusButton setImage:TTIMAGE(@"bundle://morebutton.png")
            forState:UIControlStateNormal];
[plusButton showsTouchWhenHighlighted];
[plusButton addTarget:self action:@selector(plusButtonDidPress:)
 forControlEvents:UIControlEventTouchUpInside];
[self addSubview:plusButton];

This is a TTMessageitemcell (THREE20)

Any suggestions would be appreciated. thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

从来不烧饼 2024-12-04 08:43:38

这是在drawRect或类似的东西中调用的吗?看起来好像每次调用绘图方法时都会创建按钮的新实例。尝试将加号按钮作为单元格的实例变量,并在 init 方法中对其进行初始化。然后,您可以在绘图方法中设置框架和其他属性,同时仅使用该按钮的一个实例。然后您可以释放dealloc 中的按钮。

tl;dr:看起来好像您在绘图方法中添加按钮的多个实例,例如。 drawRect:或layoutSubviews。

蒂姆

Is this being called in drawRect or something similar? It looks as if it's creating a new instance of the button each time a drawing method is called. Try making plus button an instance variable of your cell and initialise it in the init method. Then you can set frame and other properties in the drawing method while only using one instance of the button. You can then release the button in dealloc.

tl;dr: looks as if you're adding multiple instances of the button in a drawing method eg. drawRect: or layoutSubviews.

Tim

等风来 2024-12-04 08:43:38
plusButton = [[[UIButton alloc] initWithFrame:CGRectMake(bounds.size.width - 60.0f,       28.0f, 45.0f,90.0f)] autorelease ];

[plusButton setAutoresizingMask:UIViewAutoresizingFlexibleRightMargin|UIViewAutoresizingFlexibleTopMargin];


[plusButton setImage:TTIMAGE(@"bundle://morebutton.png")
            forState:UIControlStateNormal];
[plusButton showsTouchWhenHighlighted];
[plusButton addTarget:self action:@selector(plusButtonDidPress:)
     forControlEvents:UIControlEventTouchUpInside];
[self addSubview:plusButton];
plusButton = [[[UIButton alloc] initWithFrame:CGRectMake(bounds.size.width - 60.0f,       28.0f, 45.0f,90.0f)] autorelease ];

[plusButton setAutoresizingMask:UIViewAutoresizingFlexibleRightMargin|UIViewAutoresizingFlexibleTopMargin];


[plusButton setImage:TTIMAGE(@"bundle://morebutton.png")
            forState:UIControlStateNormal];
[plusButton showsTouchWhenHighlighted];
[plusButton addTarget:self action:@selector(plusButtonDidPress:)
     forControlEvents:UIControlEventTouchUpInside];
[self addSubview:plusButton];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文