我不断收到我用这些方法在标题中发布的警告......我把自己。在他们面前,但它然后搞砸了我的菜单。我看到了一些类似的帖子,但没有任何意义和绝对。对此有任何帮助表示赞赏。
Properties props = new Properties();
props.put(ConsumerConfig.GROUP_ID_CONFIG, "MyConsumerGroup");
props.put("enable.auto.commit", "false");
consumer = new KafkaConsumer<>(props);
TopicPartition partition0 = new TopicPartition("mytopic", 0);
consumer.assign(Arrays.asList(partition0));
ConsumerRecords<Integer, String> records = consumer.poll(1000);
答案 0 :(得分:0)
将函数textField名称更改为通用名称,问题是您将其命名为等于您的类变量,请将其更改为:
- (BOOL)textField:(UITextField *)fieldPhone shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
为:
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
如果需要,您可以在函数内部进行检查:
if (textField == self.phoneField) {
}