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 1005913
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T08:22:22+00:00 2026-05-16T08:22:22+00:00

I have a class that inherits from UIView However when trying to use the

  • 0

I have a class that inherits from UIView

However when trying to use the follow (UIView *)viewWithTag:(NSInteger)tag I get the warning: *incompatible Objective-C types initializing ‘struct UIView *’, expected ‘struct CustomView ‘

Right now I have made a custom method that returns my custom view, the method uses a for loop with view.subviews since the views I am looking for come from the same superview. I do a conditional check if the tag matches the one I am searching for then I return the view.

I suppose I am just wondering if there is a better practice to this?

Thanks

  • 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-16T08:22:23+00:00Added an answer on May 16, 2026 at 8:22 am

    You’re probably doing:

    CustomView * aView = [someView viewWithTag:42];
    

    viewWithTag: returns a UIView, not a CustomView. There are a couple ways around this:

    1. Casting. If you are absolutely sure that you’ll only ever get a CustomView by doing this, then you can do:

      CustomView * aView = (CustomView *)[someView viewWithTag:42];
    2. Reflection. If you’re not sure that you’re going to get a custom view, then assign it into a UView reference and decide later what to do with it:

      UIView * aView = [someView viewWithTag:42];
      if ([aView isKindOfClass:[CustomView class]]) {
        CustomView * customView = (CustomView *)aView;
      }
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm developing an iPhone application. I have a class that inherits from UIView .
I have a class that inherits from ObservableCollection<T> to re-use the INotifyCollection functionality, but
I have a class that inherits from UIView, and this class has some controls
I have GraphicView class that inherits from UIView. Its initWithFrame method is: @implementation GraphicsView
I have created a class that inherits from Steema.TeeChart.TChart I am trying to disable
I have a class that inherits from a base class (this contains a lot
I have a class that inherits from a generic dictionary as follows: Class myClass
I have a class that inherits from Page, called APage. public abstract class APage:
Example: I have an class that inherits from UIImageView. An object creates an instance
If we have a class that inherits from multiple interfaces, and the interfaces have

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.