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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T07:38:45+00:00 2026-05-28T07:38:45+00:00

I have a decision tree of height 2: const BOOL isVerticalAnimationRequired = YES; const

  • 0

I have a decision tree of height 2:

const BOOL isVerticalAnimationRequired = YES;
const BOOL isArgumentEditorExpanded = YES;
const BOOL isSelectionLeftToRight = YES;

UITableViewRowAnimation argumentEditorAnimation;
if (isVerticalAnimationRequired)
{
    argumentEditorAnimation = (isArgumentEditorExpanded) ? UITableViewRowAnimationTop :     UITableViewRowAnimationBottom;
}
else
{
    argumentEditorAnimation = (isSelectionLeftToRight) ? UITableViewRowAnimationLeft : UITableViewRowAnimationRight;
}

My problem is that the code is verbose. Ideally I would like to declare and set argumentEditorAnimation in one statement.

Are there any clever C style tips for handling situation like this?

  • 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-28T07:38:46+00:00Added an answer on May 28, 2026 at 7:38 am

    I think I would not try to fold this into one expression for reasons of clarity, but if you must:

    argumentEditorAnimation =
      isVerticalAnimationRequired ?
          (isArgumentEditorExpanded ?
               UITableViewRowAnimationTop
            :  UITableViewRowAnimationBottom)
        : (isSelectionLeftToRight ?
               UITableViewRowAnimationLeft
             : UITableViewRowAnimationRight);
    

    Alternatively, you can make your code more concise by dropping the {} when they’re not needed.

    (Consider using shorter identifiers if you want to write these kinds of expressions. The long identifiers make the code verbose as well. E.g., drop the is in your booleans.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have big decision tree with many Yes/No questions. i need implement some code
I am building a simple decision tree with jQuery. I have it running ok,
I have this decision tree, a6 <= 0.190181: 3 (7350.0/269.0) a6 > 0.190181 |
I have a task to create a decision tree for defining a person's creditworthiness
I have just spent a couple of hours trying to represent the decision tree
In StackOverflow podcast no. 19 , Joe describe Fogcreek's decision to have one database
I have to make a decision of which database server to use for my
I have tough time making this design decision. I could go with traditional new
Does anyone have links to documentation or guides on making the decision between REST
I heard that decision tables in relational database have been researched a lot in

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.