怎么将消息发送到mqtt代理服务器

欧之科技 0 2025-04-01 09:39

怎么将消息发送到mqtt代理服务器

通过Cocoa Pods添加MQTTKit

MQTTKit在github上链接,down下来。

cd到工程目录,输入pod install,用xcode打开工程的打开xcworkspace扩展名的文件。

如果不是MQTTKit存在更新的版本,则输入pod update。

新建一个MQTT的服务请求

NSString *clientID = ...

MQTTClient *client = [[MQTTClient alloc] initWithClientId:clientID];

发送消息,每次发送消息包括目标host和本地MQTT消息.具体MQTT格式消息见代码。这里Host可以是Server的IP,不需要host表解析。

// connect to the MQTT server

[self.client connectToHost:@iot.eclipse.org

completionHandler:^(NSUInteger code) {

if (code == ConnectionAccepted) {

// when the client is connected, send a MQTT message

[self.client publishString:@Hello, MQTT

toTopic:@/MQTTKit/example

withQos:AtMostOnce

retain:NO

completionHandler:^(int mid) {

NSLog(@message has been delivered);

}];

}

}];

订阅主题并接受MQTT格式的消息,这部分在viewdidload中实现。

// define the handler that will be called when MQTT messages are received by the client

[self.client setMessageHandler:^(MQTTMessage *message) {

NSString *text = [message.payloadString];

NSLog(@received message %@, text);

}];

// connect the MQTT client

[self.client connectToHost:@iot.eclipse.org

completionHandler:^(MQTTConnectionReturnCode code) {

if (code == ConnectionAccepted) {

// when the client is connected, subscribe to the topic to receive message.

[self.client subscribe:@/MQTTKit/example

withCompletionHandler:nil];

}

}];

断开连接

[self.client disconnectWithCompletionHandler:^(NSUInteger code) {

// The client is disconnected when this completion handler is called

NSLog(@MQTT client is disconnected);

}];

整个连接建立、发送消息、接受消息、断开连接都是通过Block的消息机制来实现,因此需要对block有很好地理解。

MQTT除了物联网的应用场景外有没有其他的有趣的应用场景呢

协议自然是重要的,非常重要,或许IBM意识到了这一点;TCP/IP,HTTP这些重量级的协议没能分上一杯羹,已经是让这位蓝色巨物很不爽了,物联网嘛,新名词,大约有些做为,于是IBM就捣腾了这么个东东。

在IBM的产品线里,如果mqtt能算产品的话,我觉得应该属于MQ一类吧,当年忽悠的中国的各大金融巨鳄、运营商一愣一愣的,估计现在这种产品不好卖了。

在没有更好的选择或者对不懂行的人来说,IBM的很多东东都还是不错的,技术上的协议也是这样,记得金融行业有个ISO8583协议什么的,个人对MQTT的定位就是与此类似。谈不上有多糟糕,但至少不差,比起12306或者网银插件来说,IBM至少还是不会让技术人员有多反感。但对于懂行的人来说,对其进行过分吹捧、或者在自己产品里使用,就很是不解了。

物联网技术应用专业是学什么的
物联网这个专业怎么样?
相关文章