記事一覧

Receiving by ObjCOSC

とりあえずよくわからないので、まずはココ
http://d.hatena.ne.jp/soundflower/20090425/1240618558
を参考に ObjCOSC ベースで受信プログラムを組んでみたらあっさりできました。

ただ、ちょっとハマったのが、そこに載ってるコードだけではダメで、最後に
[portIn start];
を入れないとダメなのでした;
ObjCOSC に添付の main.m を見て初めて気づきました。ていうか、上記リンクのコード自体、ほぼこの main.m を見てれば分かる話でした;

I let the problem I wrote in my last post aside and start coding receiving program based on this issue:
http://d.hatena.ne.jp/soundflower/20090425/1240618558 (in Japanese)
As result, it worked:)

There was only one thing I was stuck in:
You have to write this after the port settings to make it work
[portIn start];
which is not written in the code in the URL above.
I noticed later that all of these are written in the sample code included in the ObjCOSC package as "main.m"...