Issue: I have three View Controller class and also have one navigation Controller . I have push from second view controller class to third view controller class and when back form third view controller that time it is every time pop to second view controller …
Technology
GPUImage New Distortion Filter
Touch Moved Method in our View Controller -(void)touchesMoved:(NSSet<UITouch *> *)touches withEvent:(UIEvent *)event { if (TouchEnable) { UITouch *touch = [touches anyObject]; CGPoint touchPoint = [touch locationInView:_img_view]; @autoreleasepool { double dx = fabs(BeginPoint.x – touchPoint.x); …
Openurl freezes app for approx 10 seconds
We have resolved this issue using performselector and inside that method use dispatch_async. [self performSelector:@selector(methodToRedirectToURL) withObject:url afterDelay:0.1]; -(void)methodToRedirectToURL{ dispatch_async(dispatch_get_main_queue(), ^{ [[UIApplication sharedApplication] openURL:url]; }); }
Memory Warning in UICollectionView (with high resolution images)
We have generated thumbnail images for UICollectionView. When we want to show the large image at that time only we are loading the full-size image, it will reduce memory load and your app will work smoothly.
Not getting all albums using ALAsset library in iOS-8 and above
– Use photos framework instead of ALAsset library. – You will get all albums in smartAlbums & userCollections. – If you want the albums which contain at least 1 photos refer below code. – This code will work on swift. var arrAlbums: [PHCollection]! = Array() …
Openfire offline notification through PHP
Question We have installed Openfire 3.10.2 on Ubuntu 12.04. Chat is working fine and for offline message management I have installed the CallbackOnOfflineplugin. When the recipient is offline, a url is called. The plugin loads the url from the plugin.callback_on_offline.url property, adds ‘to’ and ‘from’ …
Get last Last Logout details openfire using REST API
Problem :- We do have functionality for offline group push notification from server end. Application is open and go to the group message tab. Now send a message to the group so, other users of group will get message i sent. By closing (kill or …
Google calendar event which repeats yearly
Problem :- we have successfully managed to add event to google calendar through php api client, but what i want is to make that event repeat every year , such as company anniversary etc, i didn’t find that in the google documentation also ,so what …
Group Joining Xmpp : Getting all messages every-time after joined group.
Hello, After deep look on group joining method of XMPP, we found one solution is describe here: let objXmppStream = XMPPStream() let objGroup = “YourGroupname@YourXMPPHOST” let roomStorage = XMPPRoomMemoryStorage() let roomJID = XMPPJID.jidWithString(objGroup) let objXmppChatRoom = XMPPRoom(roomStorage: roomStorage, jid: roomJID, dispatchQueue: dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0)) objXmppChatRoom.activate(XMPPHelper.sharedInstance.objXmppStream) objXmppChatRoom.fetchConfigurationForm() let …
onvert timestamp to pubnub timestamp of 17-digit precision unix time (UTC)
Problem :- We are trying to convert timestamp 2016-02-11 03:31:18 to pubnub timestamp of 17-digit precision unix time (UTC) something like 13406746780720711 given in reference url given by pubnub function parseDateTime(s) { var b = s.split(/\D/); return new Date(b[0],b[1]-1,b[2],b[3],b[4],b[5]) } date = new Date(parseDateTime(“2015-02-11 02:10:54”) …