How to read NMEA data from USB GPS device through cocoa application

后端 未结 3 1435
孤城傲影
孤城傲影 2021-02-11 02:15

I am using USB GlobalSat(USG-MR350) GPS device. I want to get location data (latitude and longitude) from the device within my mac cocoa application.Tried to ru

3条回答
  •  一整个雨季
    2021-02-11 03:05

    Try using the NSData's ability to print itself as bytes via the description method.

    [outputTextView insertText:[data description]];

提交回复
热议问题