문제

I need to generate test data and would like to do it with Objective-C in Xcode. So far I have not found an id3 tag library for Objective-C that writes data. I have found a few libraries which can read the data.

Any tips on Open Source projects which do this? Should I consider a different programming language?

도움이 되었습니까?

해결책

#import <AudioToolbox/AudioToolbox.h>

AudioFileSetProperty() //  kAudioFilePropertyID3Tag  

have fun!

다른 팁

If you're having trouble finding an Objective C based library, then I would agree that it would be worth considering increasing your options to include plain C based libraries. With Objective C being fully C compliant, interfacing with C based libraries is very natural.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top