我没有与核心文本一起工作,但我认为这是唯一可行的方法,但是谁知道。 所以我有一台服务器,它向我发送信息:
NSString *text = @"hello, today is best day";
NSArray *images; // array of url's from server to images (http://80.89.ru/123.png ....)
// I don't know how many url's there will be
我有一个窗口,在这个窗口中我需要用该字符串和所有图像正确绘制UILabel,我从服务器获取此文本。 所以我在InterfaceBuilder中配置了UILabel,并将带有图像的标签配置到ViewController
中@interface ViewC()
{
UILabel *longStringFromServer;
}
- (void)viewDidLoad
{
int y = 20; int x = 20;
for (NSString *url in images)
{
UIImageView *view = [UIImageView alloc] initWithFrame....];
y += 50;
// load image by url into UIImageView
}
longStringFromServer = text;
}
我有什么:
我需要什么:
我如何在第二张照片上达到该效果?