-1

私はドライバー開発の初心者なので、Objective-C で次の行が何を意味するのかを正確に知りたい

[self sendMsg:[NSData msgWithID:kReqConfiguration subID:0 dest:kAddrThisPanelServer] :YES]; 
4

2 に答える 2

0

[self sendMsg] .It is a way of calling a method in ios. With sendMsg specifying the name of the method to be called and self is the entity to call the method.

于 2013-11-14T14:56:57.870 に答える