OCLint

Unused Method Parameter

Detects parameters of methods that never be used.

Examples

Unused Parameter

- (int)foo:(int)a {
  return 0;
}