DAAppsViewController
DAAppsViewController copied to clipboard
DAAppsViewController is a simple way of displaying apps from the App Store in an aesthetically similar manner.
DAAppsViewCell.m self.nameLabel.text = appObject.name; //Thread 1: EXC_BAD_ACCESS (code=1, address=0x25b8bbec8) self.genreLabel.text = appObject.genre; [self.purchaseButton setTitle:appObject.formattedPrice forState:UIControlStateNormal];
I just created an UIImage category inside the DAAppViewCell.m file to handle the load of images from Main Bundle (compiled as static library) or Framework (compiled as framework). This could...
Hi, I am using DAAppsViewController in my project and using iPAD Mini device (iOS 8.3) for testing. It is showing all of my apps and launching SKStoreProductViewController. When I try...
Hi, showing DAAppsViewController with pushViewController worked perfectly well. But because of our current UI design, I am wondering if there is a way that I can show it with present...
Quick question on this, can anybody tell me how to add this to my project? i want it on page 5 in Storyboard mode but this code only loads up...
# ifdef __IPHONE_8_0 ``` if (&SKStoreProductParameterAffiliateToken) { if (self.affiliateToken) { [appParameters setObject:self.affiliateToken forKey:SKStoreProductParameterAffiliateToken]; if (self.campaignToken) { [appParameters setObject:self.campaignToken forKey:SKStoreProductParameterCampaignToken]; } } } ``` the above code produces a warning 'address...
When using this library with cocoapods and enabling use_framewors! the bundled resources can't be accessed. This leads to a crash in the DAAppViewCell (line 58) since it's trying to insert...
not really an issue, more of a feature request. it would be nice if there was a cocoa touch static library target. then the project could be easily added as...