Issue in iTunes COM for Windows SDK with iOS5
Issue in iTunes COM for Windows SDK with iOS5
- Subject: Issue in iTunes COM for Windows SDK with iOS5
- From: Payal Mundhada <email@hidden>
- Date: Tue, 10 Jan 2012 06:49:07 +0000
- Thread-topic: Issue in iTunes COM for Windows SDK with iOS5
Hi All,
This is regarding iTunes COM for Windows SDK. This may not be the proper place to post this question, but there doesn’t seem to be a list for the same.
I am trying to transfer audio files to iPhone through iTunes SDK
Following is the code snippet which I am using to transfer the file
IITUserPlaylist upl = (IITUserPlaylist)playListSorce;
IITOperationStatus status = upl.AddFile(track);
while (status.InProgress)
{
Thread.Sleep(100);
}
IITTrackCollection tracksList = upl.Tracks;
tracksList[trackCount].Album = playListSorce.Name<http://playListSorce.Name/>;
When the file sync is in progress then Status.InProgress returns true for all non IOS 5 devices, however for devices having IOS5 on it status.InProgress returns false even if the file is in sync.
tracksList[trackCount].Album = playListSorce.Name<http://playListSorce.Name/> this statement thorws an exception if file sync is in progress. As in case of IOS 5 devices status.InProgress retruns false , functionality is not working as expected. Does any one know the solution to resolve this issue?
Any help will be greatly appreciated . Please let me know the mailing list where this question can be posted?
Thanks & Regards,
Payal
DISCLAIMER
==========
This e-mail may contain privileged and confidential information which is the property of Persistent Systems Ltd. It is intended only for the use of the individual or entity to which it is addressed. If you are not the intended recipient, you are not authorized to read, retain, copy, print, distribute or use this message. If you have received this communication in error, please notify the sender and delete all copies of this message. Persistent Systems Ltd. does not accept any liability for virus infected mails.
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden