While we want to set uiview property (like CornerRadius, borderWidth, borderColor, roundCorners, shadowColor, shadowOpacity, shadowOffset, shadowRadius) at that time we use code or user defined runtime attribute for that but using this extension we can esily update property from attribute inspector. code support SWIFT 3.0 …
Switching View controller
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 …
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); …
Jquery – TreeGrid from HTML table.
For that I used below jquery plugin for using that follow below simple steps Step 1. Initialize plugin (Download JS and CSS file from given reference link and add into your project) <script type=”text/javascript” src=”js/jquery.js”></script> <script type=”text/javascript” src=”js/jquery.treegrid.js”></script> <link rel=”stylesheet” href=”css/jquery.treegrid.css”> <script type=”text/javascript”> $(‘.tree’).treegrid(); </script> …
Creating Custom Attributes (C#) – MVC
You can create your own custom attributes by defining an attribute class, a class that derives directly or indirectly from Attribute, which makes identifying attribute definitions in metadata fast and easy. Suppose you want to tag types with the name of the programmer who wrote …
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’ …
How to display ticking clock with differnce time from specific time (hours , minutes and seconds) in AngularJS?
Directive code : app.directive(‘clock’, [‘dateFilter’, ‘$timeout’, function (dateFilter, $timeout) { return { restrict: ‘E’, scope: { format: ‘@’, }, link: function (scope, element, attrs) { var updateTime = function () { //GET UTC DATE TIME BY USING MOMENT JS var now = moment(new Date()).utc().format(‘YYYY-MM-DD HH:mm:ss’) …