File tree Expand file tree Collapse file tree 1 file changed +4
-22
lines changed Expand file tree Collapse file tree 1 file changed +4
-22
lines changed Original file line number Diff line number Diff line change @@ -45,32 +45,14 @@ NS_ASSUME_NONNULL_BEGIN
45
45
// /--------------------------------------
46
46
47
47
/* !
48
- @abstract Set whether the public is allowed to read this object.
49
-
50
- @param allowed Whether the public can read this object.
51
- */
52
- - (void )setPublicReadAccess : (BOOL )allowed ;
53
-
54
- /* !
55
- @abstract Gets whether the public is allowed to read this object.
56
-
57
- @returns `YES` if the public read access is enabled, otherwise `NO`.
48
+ @abstract Controls whether the public is allowed to read this object.
58
49
*/
59
- - ( BOOL ) getPublicReadAccess ;
50
+ @property ( nonatomic , assign , getter = getPublicReadAccess) BOOL publicReadAccess ;
60
51
61
52
/* !
62
- @abstract Set whether the public is allowed to write this object.
63
-
64
- @param allowed Whether the public can write this object.
65
- */
66
- - (void )setPublicWriteAccess : (BOOL )allowed ;
67
-
68
- /* !
69
- @abstract Gets whether the public is allowed to write this object.
70
-
71
- @returns `YES` if the public write access is enabled, otherwise `NO`.
53
+ @abstract Controls whether the public is allowed to write this object.
72
54
*/
73
- - ( BOOL ) getPublicWriteAccess ;
55
+ @property ( nonatomic , assign , getter = getPublicWriteAccess) BOOL publicWriteAccess ;
74
56
75
57
// /--------------------------------------
76
58
// / @name Controlling Access Per-User
You can’t perform that action at this time.
0 commit comments