Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an existing NSTableView set up to accept filename dragging from finder. I need to limit the TableView to 10 entries max.

If a user drags in more files than the available slots, should I accept the drop and skim off any excess files, or should I reject the drop?

share|improve this question

1 Answer

I'd say, fill the remaining slots but reject the drop. Return YES from -validateDrop:... but NO from -acceptDrop:....

That way, there will be some indication to the user that not all entries were added, but you'll helpfully add the items which can be added.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.