Tagged Questions
10
votes
3answers
338 views
@property/@synthesize question
I'm going through all of my documentation regarding memory management and I'm a bit confused about something.
When you use @property, it creates getters/setters for the object:
.h:
@property ...
3
votes
2answers
276 views
What is common case for @dynamic usage?
There is previous post about difference of @synthesize and @dynamic.
I wanna to know more about dynamic from the perspective of how to use @dynamic usually.
Usually we use @dynamic together with ...
3
votes
4answers
1k views
Simple embeddable MidiSynth for iOS?
I have a guitar diagram app for Android that I am porting to iOS. Android has a embedded midi synthesizer (sonivox), so I can generate midi files and let Android handle the playback.
Is there a way ...
3
votes
3answers
6k views
MIDI player/synthesizer library for the iPhone
Does anyone know if there is a free/cheap MIDI player/synthesizer library that I can incorporate into my iPhone application?
As I understand it the iPhone doesn't have native support for MIDI ...
0
votes
0answers
38 views
Properties error in iphone?
Well I followed someone's advice and made an @property/@synthesize for my card effect in my code. Anyone now why it wont run(of course it compiles)? Heres the code:
#import ...
0
votes
1answer
110 views
iPhone - Synthesize and ivar use from outside the class?
I've read many things about the @synthesize call. About its use, ...
So I have made a test, and its result gives me a strange feeling.
Let me explain...
Lets write in an object .h
@interface ...