Tagged Questions

10
votes
4answers
1k views

Debugging an iOS app with an external accessory connected via Dock

Am I missing something glaringly obvious or is there no way to debug an iOS app which uses an external accessory that's connected via the 30-pin dock without using a bucket load of logs etc. I want ...
6
votes
4answers
8k views

Best way to change the color/view of disclosure indicator accessory view in a table view cell in iPhone

I need to change the color of disclosureIndicatorView accessory in the tableView cell. I think there are two way to get this done. But not able to figure out which onez the optimum. So here is what I ...
4
votes
2answers
4k views

UITableViewCell Custom accessory - get the row of accessory

I have a pretty big issue. I am trying to create a favorite-button on every UITableViewCell in a UITableView. That works very good, and I currently have an action and selector performed when pressed. ...
3
votes
2answers
397 views

looking for resource to learn “ExternalAccessory” Framework (iOS)

I am looking for some good resources to learn the External Accessory framework, specially the "Bluetooth accessory interfacing". I know there is a book by Ken Maskrey for learning the External ...
2
votes
1answer
739 views

How to launch an iphone app when an external accessory is either paired over BT or plugged into dock connector

I have researched this to death online and cannot find anything regarding auto launching an iphone app when an external accessory is either paired using BT or plugged into the dock connector. We ...
1
vote
1answer
302 views

How to get NSOutputStream to send or flush packets immediately

I am having an issue with latency when connecting to a bluetooth accessory using the External Accessory Framework. When sending data I get the following custom output in the console: if( [stream ...
1
vote
0answers
332 views

How to get list of paired Bluetooth headsets on iPhone?

I'm trying to get the list of paired Bluetooth headset devices on my iPhone. I tried the External Accessory Framework as below: [[EAAccessoryManager sharedAccessoryManager] ...
1
vote
2answers
2k views

iphone uitableview - action on accessory click

I am trying to link the click of an accessory button in a UItableview to a method in a particular class. The accessory is on multiple cells, created in code, and thus I can't just do a simple link in ...
0
votes
1answer
57 views

What methods are available for connecting a hardware accessory to iphone and android devices to transfer data?

I am trying to develop a piece of hardware to be compatible with both iphone and android devices. I would like to be able to use this hardware to transfer binary type files (i.e. images) to the device ...
0
votes
0answers
65 views

Create audible notification on iPhone from external accessory?

I develop an external accessory which connects to the iPhone via Bluetooth and animates iOS system functionality via the 'General Lingo' and 'Simple Remote Lingo'. I have NO program running on the ...
0
votes
1answer
332 views

Where can I get a complete list of Made For iPod devices that use Bluetooth?

Am working with a client to interface an iPad with a 3rd party device, a weight scale, that transmits its data via Bluetooth. I'm not building a an interface FOR the device, just trying to receive ...
0
votes
1answer
682 views

iphone objective-c interesting problem with accessory and setEditing

hi guys In my DetailViewController i have the code UPDATED x2 This is my setEditing - (void)setEditing:(BOOL)editing animated:(BOOL)animated { [super setEditing:editing animated:animated]; ...