1

Since 2.1 , i get this warning

enter image description here

when refering to this ctor method :

enter image description here

my tired eyes tell me i should not be getting this warning but ... alas still quite new at objc. Am I missing something fundamental here ?

YvesLeBorg
  • 9,070
  • 8
  • 35
  • 48

1 Answers1

1

Please create an issue in the AppCode tracker and provide the details - the declaration of "textMenuItemWithText" method and your SDK version. We couldn't reproduce it on this case:

- (void)bar:(UITextAlignment)alignment {
}

-(void)foo {
    [self bar:UITextAlignmentLeft];
}