gpt4 book ai didi

ios - 我的文字没有出现在 UITextView 中

转载 作者:行者123 更新时间:2023-12-01 18:18:38 25 4
gpt4 key购买 nike

我的 View Controller 包含一个 UIImageView 和一个 UITextView 下面。这是我的代码:

#import <UIKit/UIKit.h>

@interface DescriptionViewController : UIViewController

@property (nonatomic, strong) IBOutlet UIImageView *descriptionImage;
@property (nonatomic, strong) IBOutlet UITextView *descriptionText;

@property (nonatomic, strong) NSString *text;
@property (nonatomic, strong) NSString *image;

@end


@interface DescriptionViewController ()

@end

@implementation DescriptionViewController

- (void)viewDidLoad
{
[super viewDidLoad];

self.descriptionText = [[UITextView alloc] init];

self.descriptionImage.image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:self.image]]];
self.descriptionText.text = self.text;
NSLog(@"%@", self.descriptionText.text);
}

@end

我的代码没有显示在 textview 中,但我可以使用 NSLog 打印它。
可能是什么问题呢 ?

最佳答案

您正在初始化一个新的 UITextView这里。-

self.descriptionText = [[UITextView alloc] init];

这样,您将获得一个新的 UITextView不与主视图链接。删除该行并确保 descriptionText在您的 xib 中正确链接或 storyboard .

但是,如果您的意图实际上是以编程方式创建一个新的 UITextView从头开始,那么您还必须以编程方式将其添加到您的主视图中。

关于ios - 我的文字没有出现在 UITextView 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19196755/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com