Weak

  • The @Weak annotation signifies a weak relationship between a variable and its owner, leading to the variable being declared with the __unsafe_unretained annotation.

  • This annotation inherits methods from the java.lang.annotation.Annotation interface, including annotationType(), equals(), hashCode(), and toString().

public abstract @interface Weak implements Annotation

Annotation that indicates a variable has a weak relationship to its owner. The variable will be declared with the __unsafe_unretained annotation.

Inherited Method Summary