I use Smack lib. I need to send this(Android):
<presence type='initialize' location_id='570' user_id='8942'/>.
On Xcode:
XMPPPresence *presence = [XMPPPresence presence];
[presence addAttributeWithName:@"location_id" stringValue:[NSString stringWithFormat:@"%lu", (unsigned long)Settings.LocationID]];
[presence addAttributeWithName:@"user_id" stringValue:[NSString stringWithFormat:@"%lu", (unsigned long)Settings.UserID]];
[presence addAttributeWithName:@"type" stringValue:@"initialize"];
[_xmppStream sendElement:presence];