Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

ios - Access apps with AppleScript -


is there anyway programmatically list of ios apps itunes?

applescript not seem able this.

the way can think of looking in 'itunes media/mobile applications' folder. way lose metadata.

any suggestions list of ios apps including metadata?

thanks

i went solution scan 'mobile applications' folder.

in order metadata had following:

  • the *.ipa archives
  • unzip/extract 'itunesmetadata.plist' inside
  • parse plist
  • voila got metadata

this whole process pretty straightforward in python have both zipfile , plistlib.

one thing lookout though plistlib in python can not handle new binary plist files. first have convert them corresponding xml format. (only *.ipa seem in binary form).

this can done quite following line of code:

os.system("/usr/bin/plutil -convert xml1 %s" % file_name ) 

now thing still have figure out how installed apps on device...


Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -