我有一个scrollview
. 我textfield
在同一行中放置了一个和一个按钮。我想当用户输入一个URL
intextbox
并点击时button
,URL
应该添加动态创建textview
的textbox
and button
。(我使用它是textview
因为它会自动检测URL
并呈现为链接)。我已经尝试过以下代码,但它不起作用:
1.
- (IBAction)addLinkClicked:(id)sender {
NSLog(@"Add Link button clicked");
UITextView *linkTextView = [[UITextView alloc] init];
linkTextView.text = @"http://google.com";
linkTextView.layer.cornerRadius = 5.0;
[self.scrollView addSubview:linkTextView];
}
2.
- (IBAction)addLinkClicked:(id)sender {
NSLog(@"Add Link button clicked");
UITextView *linkTextView = [[UITextView alloc] init];
linkTextView.text = @"http://google.com";
linkTextView.layer.cornerRadius = 5.0;
[self.scrollView insertSubview:linkTextView atIndex:[self.scrollView.subviews count]];
}
请帮我解决我的问题。