如何从mySQL获取数据到UITextView?

时间:2014-08-31 13:45:45

标签: mysql ios xcode phpmyadmin uitextview

我研究了这个教程: Iphone Connect to mysql database

一切正常。我可以在php myAdmin上创建表格,并可以在模拟器中的应用程序的表格视图中显示它们。 但是从昨天起我正在寻求帮助,因为我不知道如何从mySQL获取数据并在简单的UITextView上显示它。你能举个例子或者你知道一个教程吗? 谢谢你的回答。

1 个答案:

答案 0 :(得分:0)

当我浏览完本教程时,你的UITableViewCell应该有一行代码如下:

myCell.textLabel.text = item.address;

item.address包含您要在单元格中显示的文字,因此与UITextView

相同
//                                                                      x, y, width,height
UITextView *newTextView = [[UITextView alloc] initWithFrame:CGRectMake(10, 10, 300,25)];
[newTextView setFont:[UIFont systemFontOfSize:16]];
newTextView.text = item.address;
newTextView.userInteractionEnabled = NO;

[self.view addSubview:newTextView];