Posts by rafaeljuzo • 463 points
4 posts
-
20
votes2
answers921
viewsA: What is the use of pointers?
Let’s assume an 8 bit computer with 8 bit addresses and that has only 256 bytes of memory. This is part of the memory, the numbers above represent the addresses: 54 55 56 57 58 59 60 61 62 63 64 65…
c++answered rafaeljuzo 463 -
5
votes3
answers993
viewsA: How to simulate JSON responses?
I use this site to mock JSON. It’s not exactly what you asked for, but it might help: http://www.json-generator.com/
-
4
votes2
answers143
viewsA: Design tool that exports to . xib or . storyboard
I don’t think it exists, and I don’t see any reason for it to exist. storyboard is not a design tool like photoshop, or an extension like jpg. It is part of an architecture called MVC.…
-
4
votes1
answer127
viewsA: iOS 7 - Tabelview editable
For this you need to create a custom Uitableviewcell. Let’s focus the problem on entering data just like adding phone. First, make a Uitableviewcell like this: For this, you do not need a subclass…