ios - Access itunes connect for product description.? -
i developed 1 in app purchase application using tutorial ray wenderlich working nicely.but need product description itunes connect @ loading time of app .iam able display same in in app purchase page using following code not able same in loading time?
- (void)productsrequest:(skproductsrequest *)request didreceiveresponse:(skproductsresponse *)response { nslog(@"loaded list of products..."); _productsrequest = nil; nsarray * skproducts = response.products; skproduct * product = (skproduct *)skproducts[0]; nslog(@"naveen -->%@",product.localizeddescription); //will give description of product (skproduct * skproduct in skproducts) { nslog(@"found product: %@ %@ %0.2f", skproduct.productidentifier, skproduct.localizedtitle, skproduct.price.floatvalue); } _completionhandler(yes, skproducts); _completionhandler = nil; }
i got answer ,thanks all.
the reason when app lauch have call methode didfinishload in appdelegate.m
Comments
Post a Comment