问题列表 - 第45827页

"EXC_BAD_ACCESS"," - [CFString release]:在表格中滚动时发送到解除分配的实例的消息"

滚动时出现以下错误UITableview. EXC_BAD_ACCESS,- [CFString retain]:发送给deallocated实例的消息

我怎样才能找到解除分配的实例...?这是我的noOfRowsinsection代码

for(int i=0;i<size;i++)
{
    NSString *CellIdentifier1;
    if(universalApp==2)
    {
        NSAutoreleasePool *pool=[[NSAutoreleasePool alloc]init];
    CellIdentifier1 = @"CustomThumbImageTableCell_iphone";
    cell = [[[CustomThumbImageTableCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier1] autorelease];

        //NSLog(@">>>>> Creating image >>>>>>>>");
    //cell.thumbImageView = [[CustomImageView alloc] initWithFrame:CGRectMake(4, 4, 83, 101)];
    cell.thumbImageView = [[[CustomImageView alloc] initWithFrame:CGRectMake(4, 4, 83, 101)] autorelease];

    [imgViewArray addObject:cell.thumbImageView];

    [cell.thumbImageView release];  
        [pool release];

    }
Run Code Online (Sandbox Code Playgroud)

这是我的cellforRow代码

enter code hereif(universalApp==2)
{
    NSLog(@"iphone cell>>>>>>>>>>>>>>>>>>>>>>");

    CustomThumbImageTableCell *cell = nil;


    @try
    {
        static NSString *CellIdentifier = @"CustomThumbImageTableCell_iphone";
        int currentRow = [indexPath row] …
Run Code Online (Sandbox Code Playgroud)

iphone

5
推荐指数
2
解决办法
6961
查看次数

FormsAuthentication.Authenticate无法进行身份验证

我目前在ASP.Net身份验证方面遇到了一个奇怪的问题.请考虑以下两行:

MembershipCreateStatus ct = new MembershipCreateStatus();
Membership.CreateUser("admin", "mypassword", "test@gmail.com", "1", "1", true,  out ct);
Run Code Online (Sandbox Code Playgroud)

这会在我的数据库中注册我的用户.我已经证实了这一点.但是,当我在之后立即运行时:

FormsAuthentication.Authenticate("admin", "mypassword");
Run Code Online (Sandbox Code Playgroud)

身份验证失败.奇怪的是我知道用户确实存在于db中,如果我运行则进一步确认

MembershipUserCollection uc =  Membership.FindUsersByName("admin");
Run Code Online (Sandbox Code Playgroud)

和uc确实拥有我的管理员用户所有正确的信息.有关为什么Authenticate会返回false的任何想法或提示?

c# asp.net forms-authentication asp.net-membership

6
推荐指数
1
解决办法
2379
查看次数

从编码字节中获取字符串数据

我有一个字节数组来自条形码阅读器(通过COM端口连接)读取ID卡.当我转换它们时,我可以读取一些数据,例如:

姓名,姓氏,城市

等,但如果某些数据有某些字符,如'Ë'或'Ç',或者某些字符在我们的语言中使用[编辑:OP在普里什蒂纳,科索沃],我会得到'?'.如何通过解码获得这些字符?

c#

5
推荐指数
1
解决办法
643
查看次数

Extjs多重继承?

我有一个关于ExtJS中的多重继承的问题.虽然我知道我可以简单地复制代码以使其发生,但我想知道是否有任何方法可以更有效地编码它.

GridPanel我的框架中有一个自定义组件,称为Kore.ux.grid.GridPanel.它扩展Ext.GridPanel了额外的通用功能,并为REST操作提供接口.

不久之后,我的同事希望也必须EditorGridPanel以同样的方式实现,即,她希望它是可编辑的,同时,能够轻松地执行REST操作.

我的问题是,有什么办法可以扩展Ext.EditorGridPanel以采用定制的Kore.ux.grid.GridPanel功能吗?

对不起任何语法错误,如果它令人困惑我可以改写它.谢谢!!

编辑

我再次搜索,我发现线程说这是不可能的.如果我有这个问题,我应该遵循更好的编码模式吗?

谢谢!

再次编辑

很抱歉,我找到了适合我的结构..这是我发现对我有用的方法:

var Common = function(){}   //abstract class
Ext.apply(Common.prototype, {

    a : function(){},
    b: function(){}...

});

Ext.ux.SomePanelA = Ext.extend ( Ext.Panel, {

    stuff : ............

});

Ext.ux.SomePanelB = Ext.extend ( Ext.Panel, {

    diffStuff : ............

});

Ext.applyIf(Ext.ux.SomePanelA.prototype, Common.prototype);
Ext.apply(Ext.ux.SomePanelB.prototype, Common.prototype);
Run Code Online (Sandbox Code Playgroud)

代码来源:http://www.sencha.com/forum/showthread.php?48000- multiple-inheritance&p = 228271&viewfull = 1# post228271

如果您认为自己有更好的解决方案,请再次提供有用的建议:)谢谢!

javascript inheritance extjs gridpanel

5
推荐指数
1
解决办法
4599
查看次数

如何在MySQL Workbench中生成整个数据库脚本?

我想拿整个数据库.我在哪里可以找到数据库文件?

有没有办法将包含所有数据的整个数据库写入文本文件(如SQL Server中的那个)?

mysql sql database mysql-workbench

66
推荐指数
5
解决办法
16万
查看次数

如何在php中获取子字符串

我有字符串 http://mycloud.net/4d4bf89da2e38.jpg

我想要 4d4bf89da2e38.jpg

我怎么能用php函数或regexp得到这个.

请建议.

谢谢

php regex string

0
推荐指数
1
解决办法
364
查看次数

如何使用wtforms指定<textarea>标记的行和列

构造一个wtforms的TextAreaField是这样的:

content = wtf.TextAreaField('Content', id="content-area", validators=[validators.Required()])
Run Code Online (Sandbox Code Playgroud)

如何指定与此textarea关联的行数和列数?

python wtforms

17
推荐指数
4
解决办法
1万
查看次数

hashCode()和identityHashCode()如何在后端工作?

如何做Object.hashCode()System.identityHashCode()工作在后端?是否identityHashCode()返回对象的引用?是否hashCode()取决于?对象?==运算符如何在后端工作.

hashCode()和之间有什么区别identityHashCode()

java object hashcode

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

Android菜单图标

我有一个36x36,48x48和72x72像素比例大小的菜单项和图标.现在,如何在特定情况下渲染每个图标.是否可以在xml文件中定义?

size icons android screen menu

0
推荐指数
1
解决办法
4622
查看次数

通过ITextSharp从persian html文件创建pdf

我使用ITextSharp库将html转换为pdf.我的用户在她/他的html文件中使用波斯语句,所以这个库不能转换波斯语.

为解决此问题和从右到左的问题,我使用以下代码:

        Document document = new Document(PageSize.A4, 80, 50, 30, 65);
        PdfWriter.GetInstance(document, new FileStream(strPDFpath, FileMode.Create));
        document.Open();

        ArrayList objects;
        document.NewPage();

        var stream = new StreamReader(strHTMLpath, Encoding.Default).ReadToEnd();
        objects = iTextSharp.text.html.simpleparser.
        HTMLWorker.ParseToList(new StreamReader(strHTMLpath, Encoding.UTF8), styles);            

        BaseFont bf = BaseFont.CreateFont("c:\\windows\\fonts\\Tahoma.ttf",
                                        BaseFont.IDENTITY_H, true);
        for (int k = 0; k < objects.Count; k++)
        {
            PdfPTable table = new PdfPTable(1);
            table.RunDirection = PdfWriter.RUN_DIRECTION_RTL;

            var els = (IElement)objects[k];
            foreach (Chunk el in els.Chunks)
            {
                #region set persian font
               iTextSharp.text.Font f2 = new iTextSharp.text.Font(bf, el.Font.Size,
                                                el.Font.Style, el.Font.Color);
                el.Font = …
Run Code Online (Sandbox Code Playgroud)

html c# asp.net localization

6
推荐指数
1
解决办法
5610
查看次数