Plz guide that how can i use 2 UItableView(or more) in a UIViewController & manage their
numberOfRowsInSection,......& other methods.
Any ideas for that??
相关问题
- CALayer - backgroundColor flipped?
- Core Data lightweight migration crashes after App
- back button text does not change
- iOS (objective-c) compression_decode_buffer() retu
- how to find the index position of the ARRAY Where
相关文章
- 现在使用swift开发ios应用好还是swift?
- TCC __TCCAccessRequest_block_invoke
- xcode 4 garbage collection removed?
- Unable to process app at this time due to a genera
- How can I add media attachments to my push notific
- didBeginContact:(SKPhysicsContact *)contact not in
- Custom Marker performance iOS, crash with result “
- Why is my library not able to expand on the CocoaP
Assuming that your actual problem lies in assigning the same object as UITableViewDelegate:
UITableViewDelegete methods pass the UITableView instance to it. You just need to filter out which tableview you need to operate on. For example:
use tag.. for eg use table view1 as tag=0 and use table view2 as tag
why are you going to use two tableviews in UIviewcontroller?.It is possible,set tag to each of the tableview you are adding.u can check these tags in delegate methods and do changes.