我正在尝试为我textView
的. 显示漂亮和绿色,但和对象没有显示在滚动视图中。textField
subViews
scrollView
scrollView
textView
textField
这是方法
- (void) readerView: (ZBarReaderView*) view
didReadSymbols: (ZBarSymbolSet*) syms
fromImage: (UIImage*) img
{
// do something useful with results
for(ZBarSymbol *sym in syms) {
self.symbolData = (NSString*)sym.data;
UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(10, 200, 20, 20)];
UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(30, 240,20,20)];
UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(10, 200, 300, 80)];
[textField setBackgroundColor:[UIColor redColor]];
[scrollView setBackgroundColor:[UIColor greenColor]];
[textView setBackgroundColor:[UIColor purpleColor]];
textView.text = self.symbolData;
[self.view addSubview:scrollView];
[scrollView addSubview:textField];
[scrollView addSubview:textView];
break;
}
}
一旦我将设备摄像头移到可以扫描的条形码上,就会调用此方法。
我也在这个网站上看到了很多类似的问题,我的代码看起来就像我看到的问题的答案,但我不知道为什么它不起作用。
提前致谢