- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在另一位 SO 专家用户的帮助下,我正在实现一种方法,将 viewController 连接到远程 PHP 文件以更新 MySQL 字段值并让它也更新 UILabel
.
我从 PHP 文件中回显的 JSON 值是这种格式:["34"]。
这是方法:
- (IBAction)votarAction:(id)sender {
//URL definition where php file is hosted
dispatch_queue_t backgroundQueue = dispatch_queue_create("com.mycompany.myqueue", 0);
dispatch_async(backgroundQueue, ^{
int categoriaID = [[detalleDescription objectForKey:@"idEmpresa"] intValue];
NSString *string = [NSString stringWithFormat:@"%d", categoriaID];
NSLog(@"ID EMPRESA %@",string);
NSMutableString *ms = [[NSMutableString alloc] initWithString:@"http://mujercanariasigloxxi.appgestion.eu/app_php_files/cambiarvaloracionempresa.php?id="];
[ms appendString:string];
// URL request
NSLog(@"URL = %@",ms);
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:ms]];
//URL connection to the internet
NSData *responseData = [[NSURLConnection alloc]initWithRequest:request delegate:self];
NSLog(@"responseData= %@",responseData);
//Parse JSON
NSError *error = nil;
NSArray * json = [NSJSONSerialization
JSONObjectWithData:responseData
options: NSJSONReadingMutableContainers
error: &error];
int valoracionNumber = [[json objectAtIndex:0] integerValue];
dispatch_async(dispatch_get_main_queue(), ^{
//update your label
NSString *labelValue = [NSString stringWithFormat:@"%d", valoracionNumber];
self.valoracionLabel.text = labelValue;
});
});
}
这是抛出的异常:
2014-02-28 22:45:16.921 Vive Gran Canaria[928:582b] responseData= <NSURLConnection: 0xf050bc0> { request: <NSURLRequest: 0x9de3d40> { URL: http://mujercanariasigloxxi.appgestion.eu/app_php_files/cambiarvaloracionempresa.php?id=25 } }
2014-02-28 22:45:16.922 Vive Gran Canaria[928:582b] -[NSURLConnection bytes]: unrecognized selector sent to instance 0xf050bc0
2014-02-28 22:45:16.947 Vive Gran Canaria[928:582b] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSURLConnection bytes]: unrecognized selector sent to instance 0xf050bc0'
*** First throw call stack:
(
0 CoreFoundation 0x00fca5e4 __exceptionPreprocess + 180
1 libobjc.A.dylib 0x02c5c8b6 objc_exception_throw + 44
2 CoreFoundation 0x01067903 -[NSObject(NSObject) doesNotRecognizeSelector:] + 275
3 CoreFoundation 0x00fba90b ___forwarding___ + 1019
4 CoreFoundation 0x00fba4ee _CF_forwarding_prep_0 + 14
5 Foundation 0x029a308c -[_NSJSONReader findEncodingFromData:withBOMSkipLength:] + 36
6 Foundation 0x029a323b -[_NSJSONReader parseData:options:] + 63
7 Foundation 0x029a3800 +[NSJSONSerialization JSONObjectWithData:options:error:] + 161
8 Vive Gran Canaria 0x00009bca __44-[DetalleEmpresaViewController votarAction:]_block_invoke + 602
9 libdispatch.dylib 0x02f5b7f8 _dispatch_call_block_and_release + 15
10 libdispatch.dylib 0x02f704b0 _dispatch_client_callout + 14
11 libdispatch.dylib 0x02f5e07f _dispatch_queue_drain + 452
12 libdispatch.dylib 0x02f5de7a _dispatch_queue_invoke + 128
13 libdispatch.dylib 0x02f5ee1f _dispatch_root_queue_drain + 83
14 libdispatch.dylib 0x02f5f137 _dispatch_worker_thread2 + 39
15 libsystem_c.dylib 0x03288e72 _pthread_wqthread + 441
16 libsystem_c.dylib 0x03270daa start_wqthread + 30
)
libc++abi.dylib: terminating with uncaught exception of type NSException (lldb)
这是 PHP 文件中与 JSON 数组相呼应的部分:
$arr = array();
$rs = mysql_query("SELECT * FROM tbempresas where idEmpresa='$id'");
while ($obj = mysql_fetch_assoc($rs)) {
$arr[] = $obj['valoracionEmpresa'];
}
echo json_encode($arr);
最佳答案
你必须创建一个 NSURLConnection
的对象而不是 NSData
作为响应,你将在 NSURLConnection
的委托(delegate)方法中获取数据。
NSURLConnection *connection=[[NSURLConnection alloc]initWithRequest:request delegate:self];
#pragma NSURLConnection Delegate Methods
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
//buffer is the object Of NSMutableData and it is global,so declare it in .h file
buffer = [NSMutableData data];
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
[buffer appendData:data];
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
//Here You will get the whole data
NSArray *array = [NSJSONSerialization JSONObjectWithData:buffer options:0 error:&jsonParsingError];
//And you can used this array
}
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
//if any error occurs..
}
关于ios - JSON 从 PHP 到 iOS 并从 UILabel 更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22110748/
我有一个 UILabel,其不透明度已通过使用 [UIColor clearColor] 更改为空白我现在想将标签内文本的不透明度更改为尽可能完整的级别。我该怎么做? 最佳答案 使用以下代码更改UIL
我在同一个站点中阅读了如何插入和 UILabel(子类 UILabel 并覆盖所需的方法)。在将它添加到我的应用程序之前,我决定在一个独立的测试应用程序中对其进行测试。代码如下所示。 这是 MyUIL
NSString *longStr = @"AAAAAAAAAA\nBBBBB\nCCCCCCCCCCCCCCCCCC"; 如何使用 UILabel 截断某些标签宽度: AAA... BBB...
我想在 UILabel.text 上有一个纹理。 这样做我对 UILabel 进行了子类化。使用 -drawTextInRect 方法,我尝试仅获取用于使用 CGImageMaskCreate 函数创
我正在尝试使用 iOS 6.0 中新的自动布局 api 构建动态布局。我尝试构建的布局有 2 个按钮,它们之间有一个标签,如下图所示: 我想要的是以灰色显示的容器 View 根据标签中的文本量增加或减
我不知道这是否是我做错了什么,但每次 iOS 6 到 7、7 到 8 以及从 8 到 9 的重大更新时,一些 UILabel 似乎不够大,我看到“...”因为标签被截断了。我现在必须通过应用程序并重置
我偶然发现了一个我不确定如何解决的问题。 正如您在此处看到的名称应该所在的标签(我从用户输入中获取名称,这意味着它是动态的)。如果写得太长,它只会覆盖其他标签。 此外,在 Storyboard中,UI
我是初学者,所以对于任何似乎被忽视或简单的事情,我深表歉意。 基本上,我想要做的是让屏幕上的日期选择器更新 UILabel,然后获取更新 UILabel 的结果并将其推回到前一个屏幕上的另一个 UIL
我有一个 UILabel 的 NSMutableArray。我需要能够在用户触摸时选择此 NSMutableArray 中的特定 UILabel,并将此触摸 UILabel 的中心移动到用户将手指拖动
我知道对于类的元素 UIButton和 UIBarButtonItem他们自动假设window.tintColor作为主要颜色,如果我在应用程序中随时为窗口设置新的 tintColor,则会立即更改。
我是开发者世界的新人,自 2 月份以来一直断断续续地使用 swift 和 Xcode。我希望有人能帮助我。我正在尝试制作一个简单的小费计算器,但似乎无法将两个 uilabels 放在一起。这就是我到目
我有一个单元格原型(prototype),我正在尝试向其添加两个标签。我有两个紧挨着的标签,但标签的大小是动态的,所以我希望第二个标签能够根据第一个标签的大小移动。 基本上,我希望两个标签之间有一个固
这个问题看起来很平常..但是我昨天遇到了问题,我在 xib 中添加了一个标签并为其创建了导出,我想要在该标签内有多行,按钮,所以我决定添加新的子里面有标签... UILabel *label; lab
我正在尝试实现一个可以更改 uilabel 字体大小的功能,我可以缩放 uilabel 大小(即 uilabel.size),然后自动更改 uilabel 的字体大小,示例应用程序是 InstaTex
如果我设置bottomLabel.text = Chinese character,当我运行它时我看不到aboveLabel,如果我调试 View 层次我可以看到它。so有什么问题吗? UIL
我不太确定标题是否符合我的要求,但我有一个带有一堆句子的 label,我想将它们中的每一个分开到不同的 UILabel 这是我的代码 var s: [String] = [] for (i
当我更改 UILabel 的文本属性时,它只会在应用程序中部分更新。 我试过将它放在 viewDidLoad 函数和单独的专用函数中,但无济于事。如果我在更新后将 Label.text 打印到控制台,
我正在尝试使用自动布局对齐两个 UILabel,其中第一个标签没有设置宽度但使用固有内容大小,第二个应该与第一个宽度相同,将文本换行。 理想情况下,第二个标签应将数字行设置为 0 以使用动态类型,但我
我有几个标签,它们永远不应该相互接触。见下图(忽略黄色字母): 一共是4个标签,2个选手名字,2个分数。球员的名字将取代原来的球员标签文本。所以“玩家 1:”可以是任意宽度的任意文本。标签在 View
我正在开发一个应用程序,我需要能够点击并拖动 UILabels。第二个挑战是我需要屏幕上的其他 UILabel 相互移开(切勿重叠)。因此,当我拖动一个标签并遇到另一个标签时,它会将第二个标签撞开。也
我是一名优秀的程序员,十分优秀!