0

我有一个 Objective-C 类,它是 UIViewController 的子类。这不是我的主视图,但是当通过 StoryBoard 中的 segue 从 ViewController 按下按钮时可以访问它。它们都连接到导航控制器,因此它们可以正常切换。但是,我有一个问题。在我的“DisplayView.m”文件(第二个视图)中,我进行了一些计算并想要设置标签的文本。我知道代码的计算部分没有任何问题,因为当我 NSLog 字符串时,结果很好。但是,标签不会改变。这是我在 Storyboard 中的 DisplayView 场景设置:

  • “DisplayView”设置的自定义类
  • 链接到 IBOutlet 的标签

如果有帮助,这是我的 DisplayView.m 的 imp 文件。如果您需要任何其他详细信息,请告诉我。我尝试过的事情:

  • 创建打印文本的新方法
  • 将应该显示的输出记录到控制台(完美运行)
  • 尝试不同的标签
  • 尝试使用没有 @property 的标签对象
  • 试图 setText 一个非格式化的字符串

这些测试都没有真正奏效,我似乎找不到问题所在。新视图只加载没有标签。但是,如果我更改 StoryBoard 中的标签文本,它会显示出来。它只是没有显示我的代码中的任何值。

显示视图.m

#import "DisplayView.h"

@interface DisplayView ()

@end

@implementation DisplayView
@synthesize months,days,seconds;

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

-(void)calc:(int)m with:(int)d andWith:(int)y {

    NSString* bday = [NSString stringWithFormat:@"%i-%i-%i 00:00:00 +0000",m,d,y];
    NSDateFormatter *formatter = [NSDateFormatter new];
    [formatter setDateFormat:@"LL-dd-yyyy 00:00:00 +0000"];
    NSDate *date1 = [formatter dateFromString:bday];
    NSDate *date2 = [NSDate date];
    NSTimeInterval secondsBetween = [date2 timeIntervalSinceDate:date1];
    int numberOfDays = secondsBetween/86400;
    [days setText:@"asdadas"];
}


@end

显示视图.h

#import <UIKit/UIKit.h>

@interface DisplayView : UIViewController {

    IBOutlet UILabel* months;
    IBOutlet UILabel* days;
    IBOutlet UILabel* seconds;


}


-(void)calc:(int)m with:(int)d andWith:(int)y;

@property UILabel* months;
@property UILabel* days;
@property UILabel* seconds;

@end
4

0 回答 0