Questions tagged [data-formatters]
20 questions
11
votes
2 answers
How to display strings in Xcode debugger?
I always used to be able to see NSString values in the debugger, without problem. Since updating to 3.2.5 all I see is the format string {(char *)Xcode_CFStringSummary($VAR, $ID)}:s
I can't see anything wrong with that. Can anybody please tell me…

Rich
- 532
- 3
- 17
5
votes
2 answers
Creating an Xcode data formatter bundle for custom Obj-C objects
To help simplify debugging of some custom Objective-C objects in the Xcode debugger window, I've created a set of data formatter strings for each of the objects, using the related Apple documentation and Xcode's built-in data formatters as a…

Quinn Taylor
- 44,553
- 16
- 113
- 131
2
votes
0 answers
Xcode debugger documentation missing
Is anyone else having trouble navigating to the Xcode Debugging Guide? I get redirected to a generic page when trying to get there through the Xcode documentation links in Xcode 4.0.2.
I have used GDB before, but I need to find out about…

dale
- 21
- 1
2
votes
1 answer
Java EE - What is the correct layer for formatting domain model objects before passing them to views?
I am developing a web application which has a typical layered architecture:
a DAO layer that retrieves domain model objects from a database;
this layer communicates with the service layer which does some business operations using those…

alex
- 705
- 9
- 21
2
votes
1 answer
The request entity's media type 'application/x-www-form-urlencoded' is not supported for this resource
I'm using ASPNET Boilerplate framework for developing my application, but I'm sure this is a WebAPI Specific issue. I'm consuming a Dynamic WebAPI function that is built upon the following Application Layer function.
Application Service function
On…

Ali Kareem Raja
- 566
- 1
- 7
- 21
2
votes
1 answer
How to call a C++ method from within an lldb summary format in XCode?
XCode Version 6.3.2 (6D2105)
The variable I'm attempting to display is of type boost::posix_time::ptime but my question applies to any C/C++ type. The documentation for boost::posix_time::ptime specifies that the date part of the time (year, month,…

jorgander
- 540
- 1
- 4
- 12
1
vote
1 answer
Xcode debugging: View value of NSNumber?
Is it possible to see the numeric value of an NSNumber in the debugger datatip on in the variable watch window?
I store an Integer value in NSNumber and want to see this value during debugging.
I tried some of the data formatters in the debugger…

TalkingCode
- 13,407
- 27
- 102
- 147
1
vote
1 answer
MySQL replication by choice with custom data formatting
Is it possible to replicate a mysql database by choosing only the tables you want to be replicated (unto the target database) considering the target database has a slightly different structure.
Consider the following:
I have a database loaded with…

Aivan Monceller
- 4,636
- 10
- 42
- 69
1
vote
3 answers
How do I edit pattern in DataFormatter?
I want to read data in Excel with Java, and data of cell in Excel got 2 types is NUMERIC and STRING. So when I want to read the data as a NUMERIC, it only displays numbers 101125340004, not like this 1.01E+11 because it is a telephone attribute. My…

Dao Viet Anh
- 13
- 5
1
vote
1 answer
TypeError when writing a list on a csv file
I am trying to create a code to reformat csv files and write it a list of lists on a csv file. The code is not very clean but has worked in the past. But now that I added a new first part to it, where I delete the rows and create betweenfile, it…

Sybrand Brekelmans
- 15
- 2
1
vote
0 answers
angular - ngModelController $formatters won't trigger.
Hey guys i'm having trouble wrapping my head around the ngModelController.
i have this directive:
app.directive('emailValidation', function () {
return {
restrict: 'A',
require: 'ngModel',
link: function (s, e, a, c) {
…

fedesc
- 2,554
- 2
- 23
- 39
1
vote
1 answer
AngularDart: Filter chaining: does order of filters matter?
I want to understand how Chained Filters/Formatters execution in AngularDart via ng-repeat Directive work.
Can anyone explain how it works in clear and concise manner?
The referenced tutorial does not provide enough detail to get a completely grasp…

KK.
- 693
- 6
- 15
0
votes
1 answer
Data Formatters temporarily unavailable, will re-try after a 'continue'. (Not safe to call dlopen at this time.) for popupbutton
#0 0x7fff8102a70e in flush_cache
#1 0x7fff81030605 in flushCaches
#2 0x7fff8103293c in remethodizeClass
#3 0x7fff8102372c in _read_images
#4 0x7fff81039835 in map_images_nolock
#5 0x7fff810229a0 in map_images
#6 …

Pankaj Sejwal
- 1,605
- 1
- 18
- 27
0
votes
0 answers
How to change the cellType from custom to Text in POI
I am trying to parse an excel file which is having some columns which are in Custom format.I have to convert them into Text before parsing.I am trying to implement a condition that if the celltype is blank and custom it will be converted to text…

Mandrek
- 1,159
- 6
- 25
- 55
0
votes
0 answers
AngularJS - number format directive not working with ng-show
I have used a directive to format number on textbox.
'use strict';
app.directive('numberOnly', function ($filter) {
return {
require: '?ngModel',
link: function (scope, elem, attrs, ctrl) {
if (!ctrl) {
return;
…