iPhone中视图中的数字框(从0跳到9)。我应该怎么做?

时间:2011-08-10 09:24:49

标签: iphone numbers

我的意思是我有UIImageView,我想在其上加上一个数字。然后数字从0跳到9。

1 个答案:

答案 0 :(得分:3)

我猜(你应该更详细地解释你想做什么)你想要显示一个随时间变化的数字。

假设您有一个显示数字的UILabel:

@interface MyViewController : UIViewController {
  UILabel *myNumberLabel;
}
@end

@implementation MyViewController
  - (id)init {
    if ((self = [super init])) {
      myNumberLabel = [[UILabel alloc] initWithFrame:CGRectMake(0,0,50,50)]; //or some other rect..
      [self.view addSubView:myNumberLabel];
    }
    return self;
  }

  - (void)dealloc {
    [myNumberLabel release];
    [super dealloc];
  }

  - (void)updateNumber:(NSNumber*)number {
    [myNumberLabel setText:[number stringValue]];
  }
@end