| bio | website | coming.soon |
|---|---|---|
| location | City of Three Rivers, Passau | |
| age | 26 | |
| visits | member for | 1 year, 1 month |
| seen | 10 mins ago | |
| stats | profile views | 54 |
Working as an iOS Developer, i previously graduated as Bachelor and Master student at HDU, Germany. My goal is to create the ultimate user experience with the ultimate code and style, either on OSX or iOS or other SDKs in the future.
|
May 14 |
comment |
How to detect which 3rd sdk use UDID? @epatel crazy horse!!! :-) I only wanted to keep in mind, that runtime checks do not save you from being rejected. strings is by far now the best solution to find out which framework/lib is responsible for a rejection, so you don't have to update all of your libs, because that would probably mean a lot of time of adaption to the new api of these libs |
|
May 14 |
comment |
How to detect which 3rd sdk use UDID? @epatel You'll get rejected if uniqueIdentifier exists in your code/lib, even if you never call it. So a symbolic breakpoint doesn't help, if a lib/framework doesn't call it, but uses uniqueIdentifier in code!!! |
|
Apr 18 |
awarded | Yearling |
|
Apr 12 |
answered | Interface Builder IB - Navigation Controller, skipping a view |
|
Apr 9 |
revised |
Do hidden views respond to NSNotifications? added 2 characters in body |
|
Apr 9 |
answered | Do hidden views respond to NSNotifications? |
|
Mar 25 |
awarded | Revival |
|
Mar 11 |
answered | When waking up from significant location change notification how much time do I have in the background? |
|
Mar 6 |
comment |
Custom cell in UITableView is not displaying properly - only last cell is populated than accept, if you feel it was the right answer |
|
Mar 5 |
comment |
Custom cell in UITableView is not displaying properly - only last cell is populated Also you have to set a custom class for your cell nib and set your outlets there. Then in cellForRowAtIndexPath: don't cast the dequeueReusableCellWithCellIdentifier to UITableViewCell, but to your own class. Only then you can properly set the views and labels of your custom nib-cell!!! |
|
Mar 5 |
comment |
Custom cell in UITableView is not displaying properly - only last cell is populated don't pack // assigns current row's labels
NSArray * customCellText = [Model cellText:indexPath.row];
dinnerItem.text = customCellText[0];
dinnerDescription.text = customCellText[1];
dinnerTime.text = customCellText[2];
cell = customCell; in the if context!!! If you reuse, your cell isn't updated with the appropriate infos |
|
Mar 5 |
comment |
Custom cell in UITableView is not displaying properly - only last cell is populated you are overriding cell with a new object (whatever customCell is?!?!). Can you please show where you set customCell-variable? is it an instance variable? THIS IS IMPORTANT. Although I can tell you, overriding cell makes cell alloc init senseless and useless. You should delete cell = customCell;, otherwise it won't work... |
|
Mar 4 |
comment |
Custom cell in UITableView is not displaying properly - only last cell is populated What do you mean by cell = customCell;? What is customCell and can you show us the code where you are setting customCell? |
|
Mar 4 |
awarded | Caucus |
|
Mar 4 |
answered | Custom cell in UITableView is not displaying properly - only last cell is populated |
|
Mar 1 |
awarded | Benefactor |
|
Mar 1 |
comment |
Efficient custom tiled maps with custom zoom levels and zoom factors As I cannot give anyone else the bounty, you'll get it because of your great support, that you showed me. You deserve it. |
|
Mar 1 |
comment |
Efficient custom tiled maps with custom zoom levels and zoom factors thanks a lot. I realized, my project is to specific to use yours, but good job. Other ones are gone a use it... |
|
Feb 27 |
answered | Scaling up CALayer with sublayers leads to small gaps between sublayers |
|
Feb 27 |
comment |
Scaling up CALayer with sublayers leads to small gaps between sublayers I thought of something like that, but in fact it was rather simpler. Check out the answer :-) |