is there inbuilt stored procedure in sql-server return output of query xml document..? need convert result of query or stored proc xml of desired format , save xml desired folder. there several ways. blog post shows some.
i using multiple icarousels , want import pictures directory. have icarousel 1 on top , have icarousel 2 on bottom. have 6 folders in directory in ios device user has taken pictures. want assign icarousel 1 directory "apple" , icarousel 2 directory "green". the below code until now. of course, gets error saying "redefinition of..." since setting paths 2 imagearrays. how should make code simpler? furthermore, have warning saying 'nsmutablearray *_strong' 'nsarray *_strong' @ imagearray2 = directorycontent; line. want make working. - (void)viewdidload { [super viewdidload]; //configure carousel imagearray1 = (nsmutablearray *)[[nsfilemanagerdefaultmanager] directorycontentsatpath: fpath]; nsstring *location=@"apple"; nsstring *fpath = [documentsdirectory stringbyappendingpathcomponent:location]; nsarray *directorycontent = [[nsfilemanager defaultmanager] directorycontentsatpath: fpath]; ...
Comments
Post a Comment