小编mam*_*mcx的帖子

哪个是dyld`dyld_fatal_error的原因,这是iOS上不兼容的api?

我正在将部分项目转移到iOS 5/ARC.最古老的项目之一(iOS 4.2,支持iPod Touch 2g的armv6)给了我:

dyld`dyld_fatal_error:
0x8feb1070:  int3   
0x8feb1071:  nop    
Run Code Online (Sandbox Code Playgroud)

在发布图像之后,但在进入主图像之前.必须将一些lib /代码更新到iOS 5,但哪一个?是否可以使用比猜测更好的方法?

crash ios4 ios5 xcode4.2 automatic-ref-counting

18
推荐指数
2
解决办法
2万
查看次数

使用msbuild + Delphi2009时,"ERROR MSB4040项目中没有目标"

我正在尝试在Delphi 2009中自动构建项目.

我正在使用带有.net 3.5的msbuild

我只是打电话给:

Z:\Server>C:\WINDOWS\Microsoft.NET\Framework\v3.5\msbuild "BestSellerAppServer.g
roupproj" /target:Build
Run Code Online (Sandbox Code Playgroud)

得到这个:

Build started 27/08/2009 01:15:45 p.m..
Project "Z:\Server\BestSellerAppServer.groupproj" on node 0 (Build target(s)).
Project "Z:\Server\BestSellerAppServer.groupproj" (1) is building "Z:\Server\Be
stSellerAppServer.dproj" (2) on node 0 (default targets).
Z:\Server\BestSellerAppServer.dproj : error MSB4040: There is no target in the
project.
Done Building Project "Z:\Server\BestSellerAppServer.dproj" (default targets) -
- FAILED.

Done Building Project "Z:\Server\BestSellerAppServer.groupproj" (Build target(s
)) -- FAILED.


Build FAILED.

"Z:\Server\BestSellerAppServer.groupproj" (Build target) (1) ->
"Z:\Server\BestSellerAppServer.dproj" (default target) (2) ->
  Z:\Server\BestSellerAppServer.dproj : error MSB4040: …
Run Code Online (Sandbox Code Playgroud)

delphi msbuild build-process delphi-2009

14
推荐指数
2
解决办法
6750
查看次数

如何简化iPhone本地化?

我需要本地化一个用于英语和西班牙语的开发应用程序.

尽管我遵循Apple的使用方式NSLocalizedString并为两者创建笔尖,但我已经失去了需要进行本地化的新字符串的轨道,并且惊讶地发现当我更改母版时我需要用西班牙语重做笔尖.

(就像这个http://www.gigliwood.com/weblog/Cocoa/A_Great_Need_for_Be.html)

我想知道是否存在更好/替代/更自动化的方式.

我知道使用gettext和poedit并想知道是否可以使用类似的东西.

或者如果存在一些脚本或工具.

iphone localization

13
推荐指数
1
解决办法
8953
查看次数

如何使用django rest框架禁用HTML错误页面的返回?

如果我在DRF的lib之外有错误,则django会发回错误的HTML而不是DRF使用的正确错误响应.

例如:

@api_view(['POST'])
@permission_classes((IsAuthenticated,))
def downloadData(request):
    print request.POST['tables']
Run Code Online (Sandbox Code Playgroud)

返回异常MultiValueDictKeyError: "'tables'".并获取完整的HTML.怎么只得到一个JSON的错误?

PD:

这是最终的代码:

@api_view(['GET', 'POST'])
def process_exception(request, exception):
    # response = json.dumps({'status': status.HTTP_500_INTERNAL_SERVER_ERROR,
    #                        'message': str(exception)})
    # return HttpResponse(response,
    #                     content_type='application/json; charset=utf-8')
    return Response({
        'error': True,
        'content': unicode(exception)},
        status=status.HTTP_500_INTERNAL_SERVER_ERROR
    )


class ExceptionMiddleware(object):
    def process_exception(self, request, exception):
        # response = json.dumps({'status': status.HTTP_500_INTERNAL_SERVER_ERROR,
        #                        'message': str(exception)})
        # return HttpResponse(response,
        #                     content_type='application/json; charset=utf-8')
        print exception
        return process_exception(request, exception)
Run Code Online (Sandbox Code Playgroud)

django rest exception django-rest-framework

13
推荐指数
2
解决办法
5663
查看次数

可以在Obj-c中为变量参数函数发送一个数组吗?

在python中,很容易构建一个字典或数组,并将其解压缩到具有可变参数的函数

我有这个:

- (BOOL) executeUpdate:(NSString*)sql, ... {
Run Code Online (Sandbox Code Playgroud)

手动方式是这样的:

[db executeUpdate:@"insert into test (a, b, c, d, e) values (?, ?, ?, ?, ?)" ,
  @"hi'", // look!  I put in a ', and I'm not escaping it!
  [NSString stringWithFormat:@"number %d", i],
  [NSNumber numberWithInt:i],
  [NSDate date],
  [NSNumber numberWithFloat:2.2f]];
Run Code Online (Sandbox Code Playgroud)

但我不能硬编码我正在调用的参数,我想:

NSMutableArray *values = [NSMutableArray array];

for (NSString *fieldName in props) {
  ..
  ..
  [values addObject : value]
}
[db executeUpdate:@"insert into test (a, b, c, d, e) values (?, ?, ?, ?, …
Run Code Online (Sandbox Code Playgroud)

objective-c

12
推荐指数
2
解决办法
1万
查看次数

解决paramiko上的线程清理问题

我有一个使用paramiko的自动化过程并出现此错误:

Exception in thread Thread-1 (most likely raised during interpreter 
shutdown)

....
....
<type 'exceptions.AttributeError'>: 'NoneType' object has no attribute 
'error' 
Run Code Online (Sandbox Code Playgroud)

我知道这是清理/线程中的问题,但我不知道如何解决它.

我有最新版本(1.7.6)并根据此线程,它已解决,所以我直接下载代码但仍然得到错误.

在winxp/win2003下的Python 2.5/2.6上发生了故障.

我在__del__析构函数中关闭连接,然后在脚本结束之前关闭它,这些都不起作用.还有更多,使用这个错误发生在前面,所以也许与解释器关闭无关?

python ssh paramiko

11
推荐指数
1
解决办法
6745
查看次数

像BluePrint/960gs这样的HTML5 + CSS3框架?

我正在开始一个侧面项目,并希望用HTML5 + CSS3构建它.向后兼容性不是问题.

我想知道是否存在类似于BluePrint/960gs的框架.主要是,我正在寻找网格系统和排版.我发现最好的(也是唯一一个)与新的HTML5标签配合使用的是Less Framework,这是一个好的开始,但我想知道是否存在更好的东西?

css html5 frameworks css3

11
推荐指数
1
解决办法
7387
查看次数

CodeMirror:如何将表添加到sql-hint?

我无法想象如何向codemirror添加表.我有sql-hint.js,并为关键字工作,但不明白如何添加表和列...

autocomplete codemirror

11
推荐指数
2
解决办法
6428
查看次数

适用于iphone sdk应用程序的最佳正则表达式库?

我对iPhone SDK中提供的正则表达式库感到困惑.例如,RegexLite看起来需要一个动态链接,据我所知,这对于iPhone上的SDK是不可能的.

我想要一个RegEx库来进行数据验证......哪一个是最好的?

regex iphone objective-c

10
推荐指数
3
解决办法
9018
查看次数

如何在表之间复制单元格作为脉冲应用程序

我需要在2个表视图之间复制单元格.

我有一个或多或少的工作解决方案.但是,它并不顺利,我很乐意做类似于脉冲应用程序重新排序的选项......

脉冲工作方式特别之处在于重新排序动画与正常的单元重新排序相同,但单元格仍可在表格之间移动.

这就是我现在拥有的:

- (BoardColumnView *) addColumn:(NSString *)title type:(ColumnType)type{
    BoardColumnView *col = [BoardColumnView createColumn:title];

    [self.columns addObject:col];

    // Add a pinch gesture recognizer to the table view.
    UILongPressGestureRecognizer* draggingRecognizer = [[UILongPressGestureRecognizer alloc] 
                                                    initWithTarget:self 
                                                    action:@selector(moveActionGestureRecognizerStateChanged:)
                                                   ];

    draggingRecognizer.minimumPressDuration = 0.5;
    draggingRecognizer.delegate = self;

    [col.tableView addGestureRecognizer:draggingRecognizer];
    [draggingRecognizer release]; 


    return col;
}

#pragma mark -
#pragma mark UIGestureRecognizer Delegate/Actions

- (BOOL) gestureRecognizerShouldBegin: (UIGestureRecognizer *) gestureRecognizer
{
    ALog(@"Drag detected");
    return YES;
}

- (void) moveActionGestureRecognizerStateChanged: (UIGestureRecognizer *) recognizer
{
    switch ( …
Run Code Online (Sandbox Code Playgroud)

cocoa-touch drag-and-drop uitableview ipad ios4

10
推荐指数
0
解决办法
1952
查看次数