您好我是ios的新手,在我的应用中我添加了UITableList,我在package com.ge.health.gam.poc.publisher;
import javax.jms.JMSException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jms.core.JmsTemplate;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.ResponseBody;
import com.ge.health.gam.poc.consumer.DemoConsumer;
@Component
public class DemoPublisher {
@Autowired
JmsTemplate jmsTemplate;
public void demoPublishMessage(String message) throws JMSException{
jmsTemplate.convertAndSend("NewQueue", message);
System.out.println("Message sent");
}
}
UIView
添加了xib
tableList
个文件
此处我在HeaderView
UItextfield
个文件中添加了一个UIView
,当我点击xib
时,它不可编辑,我的意思是textfield
请帮帮我一个
click action not working
答案 0 :(得分:1)
您可以通过以下任何方式执行此操作
header.coridersTextfield.editable = YES;
// or
header.coridersTextfield.userInteractionEnabled = YES;
// or
header.coridersTextfield. enabled = YES;
或使用委托方法
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
return YES;
}
<强>更新
UIView *HeaderView = [[UIView alloc] init];
HeaderView.frame = CGRectMake(x,y, width, height); // customize frame and set the Height based on your Subviews Height
答案 1 :(得分:0)
HeaderView的边界是(x:0,y:0,width:0,height:0)
执行以下操作:
UIView *HeaderView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, CGrectGetWidth(tableView.bounds), 44.0f)];
答案 2 :(得分:-1)