Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7532421
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T05:26:51+00:00 2026-05-30T05:26:51+00:00

I have an NSUInteger defined as a property like so: @property (nonatomic, assign) NSUInteger

  • 0

I have an NSUInteger defined as a property like so:

@property (nonatomic, assign) NSUInteger wordDisplayed;

I need to have this as a property because I need access to read/write to this variable from other methods and classes.

When trying to change the value of this property within a block, I get the following warning:

Capturing ‘self’ strongly in this block is likely to lead to a retain cycle

“Block will be retained by an object strongly retained by the captured object”

How can I update this variable property within a block?

The block I’m using is in a modified UIActionSheet that I’m using to make the UIActionSheet accept blocks.

https://github.com/zoul/Lambda-Alert

Here is an example of my code:

 sectionHeadersAct = [[LambdaSheet alloc] initWithTitle:@"Book 2 Lesson 1"];
    [sectionHeadersAct addButtonWithTitle:@"D. E. F. & G. Teach New Letters" block:^{ 
        wordDisplayed = 15; //This is where I'm trying to change the value
    }];

[sectionHeadersAct showInView:self.view];
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T05:26:52+00:00Added an answer on May 30, 2026 at 5:26 am

    This post deals with this certain issue: https://stackoverflow.com/a/8159567/656036

    To summarize it: You should use a weak pointer to self. If you use ARC, you can solve this by writing this before your block:

    __weak MyObject *weakSelf = self;
    

    And using weakSelf instead of self in the block itself.

    EDIT Try this:

    __weak ViewController *weakSelf = self;
    sectionHeadersAct = [[LambdaSheet alloc] initWithTitle:@"Book 2 Lesson 1"];
    [sectionHeadersAct addButtonWithTitle:@"D. E. F. & G. Teach New Letters" block:^{ 
        weakSelf.wordDisplayed = 15;
    }];
    
    [sectionHeadersAct showInView:self.view];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have defined a property in application delegate.h and synthesized it in delegate.m file
Does anyone have an example of how to handle read and write NSStream events
I have the following Objective-c Function - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { NSUInteger
Lets say I have to provide an value as bitmask. NSUInteger options = kFoo
I have an situation where I get an NSDecimal, and I need an NSInteger.
i have a DetailViewController and a Messages class(this is a TableViewController class). I parse
I cannot change the value of an instance variable inside a function. I have
I'm stuck with this problem I have a serie of pages of the CharacterView
i have a simply warning in my iphone dev code. NSUInteger *startIndex = 20;
Does Anyone have any idea why this code produces this errors in OS 3.0

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.