アイテムのタグ属性を使用して特別なキー/ID を保存できますか?それとも別の目的で使用できますか?
使用目的の例:
- (void)awakeFromNib {
[self.popup addItemWithTitle: [NSString stringWithFormat: @"dummy title" ]];
[[self.popup lastItem] setTag: 1658 ];
}
- (IBAction)popupAction: (id)sender {
[self someMethod: [sender selectedItem].tag];
}